mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-13 06:30:34 +05:00
remove edgenr at constructor
This commit is contained in:
parent
02fd6d2712
commit
61e13dbc8b
@ -195,13 +195,14 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m)
|
|||||||
|
|
||||||
py::class_<Segment>(m, "Element1D")
|
py::class_<Segment>(m, "Element1D")
|
||||||
.def("__init__",
|
.def("__init__",
|
||||||
[](Segment *instance, py::list vertices, py::list surfaces, int index, int edgenr)
|
[](Segment *instance, py::list vertices, py::list surfaces, int index)
|
||||||
{
|
{
|
||||||
new (instance) Segment();
|
new (instance) Segment();
|
||||||
for (int i = 0; i < 2; i++)
|
for (int i = 0; i < 2; i++)
|
||||||
(*instance)[i] = py::extract<PointIndex>(vertices[i])();
|
(*instance)[i] = py::extract<PointIndex>(vertices[i])();
|
||||||
instance -> si = index;
|
instance -> si = index;
|
||||||
instance -> edgenr = edgenr;
|
// needed for codim2 in 3d
|
||||||
|
instance -> edgenr = index;
|
||||||
if (len(surfaces))
|
if (len(surfaces))
|
||||||
{
|
{
|
||||||
instance->surfnr1 = py::extract<int>(surfaces[0])();
|
instance->surfnr1 = py::extract<int>(surfaces[0])();
|
||||||
@ -211,7 +212,6 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m)
|
|||||||
py::arg("vertices"),
|
py::arg("vertices"),
|
||||||
py::arg("surfaces")=py::list(),
|
py::arg("surfaces")=py::list(),
|
||||||
py::arg("index")=1,
|
py::arg("index")=1,
|
||||||
py:: arg("edgenr")=-1,
|
|
||||||
"create segment element"
|
"create segment element"
|
||||||
)
|
)
|
||||||
.def("__repr__", &ToString<Segment>)
|
.def("__repr__", &ToString<Segment>)
|
||||||
|
Loading…
Reference in New Issue
Block a user