mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
Interval selectors (draft)
This commit is contained in:
parent
1774db10ff
commit
2dc506fcfd
69
libsrc/occ/python_occ.hpp
Normal file
69
libsrc/occ/python_occ.hpp
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
class DirectionalInterval
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
gp_Vec dir;
|
||||||
|
double minval = -1e99;
|
||||||
|
double maxval = 1e99;
|
||||||
|
bool openmin = false, openmax = false;
|
||||||
|
|
||||||
|
DirectionalInterval (gp_Vec adir) : dir(adir) { ; }
|
||||||
|
DirectionalInterval (const DirectionalInterval & i2)
|
||||||
|
: dir(i2.dir), minval(i2.minval), maxval(i2.maxval) { ; }
|
||||||
|
|
||||||
|
DirectionalInterval operator< (double val) const
|
||||||
|
{
|
||||||
|
cout << "create interval with < " << ", val = " << val << endl;
|
||||||
|
cout << "me = " << this->minval << " - " << this->maxval << endl;
|
||||||
|
DirectionalInterval i2 = *this;
|
||||||
|
i2.maxval = val;
|
||||||
|
|
||||||
|
cout << "resulting i = " << i2.minval << " - " << i2.maxval << endl;
|
||||||
|
return i2;
|
||||||
|
}
|
||||||
|
|
||||||
|
DirectionalInterval operator> (double val) const
|
||||||
|
{
|
||||||
|
cout << "create interval with > " << ", val = " << val << endl;
|
||||||
|
cout << "me = " << this->minval << " - " << this->maxval << endl;
|
||||||
|
|
||||||
|
DirectionalInterval i2 = *this;
|
||||||
|
i2.minval = val;
|
||||||
|
cout << "resulting i = " << i2.minval << " - " << i2.maxval << endl;
|
||||||
|
|
||||||
|
return i2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool Contains (gp_Pnt p, double eps = 1e-8)
|
||||||
|
{
|
||||||
|
// cout << "Contains point " << p.X() << "," << p.Y() << "," << p.Z() << " ? " << endl;
|
||||||
|
double val = dir.X()*p.X() + dir.Y()*p.Y() + dir.Z() * p.Z();
|
||||||
|
// cout << "minval = " << minval << ", val = " << val << " maxval = " << maxval << endl;
|
||||||
|
if (openmin) {
|
||||||
|
if (val < minval+eps) return false;
|
||||||
|
} else {
|
||||||
|
if (val < minval-eps) return false;
|
||||||
|
}
|
||||||
|
if (openmax) {
|
||||||
|
if (val > maxval-eps) return false;
|
||||||
|
} else {
|
||||||
|
if (val > maxval+eps) return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
inline gp_Pnt Center (TopoDS_Shape shape)
|
||||||
|
{
|
||||||
|
GProp_GProps props;
|
||||||
|
switch (shape.ShapeType())
|
||||||
|
{
|
||||||
|
case TopAbs_FACE:
|
||||||
|
BRepGProp::SurfaceProperties (shape, props); break;
|
||||||
|
default:
|
||||||
|
BRepGProp::LinearProperties(shape, props);
|
||||||
|
}
|
||||||
|
return props.CentreOfMass();
|
||||||
|
}
|
||||||
|
|
@ -44,6 +44,9 @@
|
|||||||
#include <GCE2d_MakeSegment.hxx>
|
#include <GCE2d_MakeSegment.hxx>
|
||||||
#include <GCE2d_MakeCircle.hxx>
|
#include <GCE2d_MakeCircle.hxx>
|
||||||
|
|
||||||
|
#include <python_occ.hpp>
|
||||||
|
|
||||||
|
|
||||||
#if OCC_VERSION_MAJOR>=7 && OCC_VERSION_MINOR>=4
|
#if OCC_VERSION_MAJOR>=7 && OCC_VERSION_MINOR>=4
|
||||||
#define OCC_HAVE_DUMP_JSON
|
#define OCC_HAVE_DUMP_JSON
|
||||||
#endif
|
#endif
|
||||||
@ -115,7 +118,18 @@ DLL_HEADER void ExportNgOCCBasic(py::module &m)
|
|||||||
.def("__sub__", [](gp_Vec v1, gp_Vec v2) { return v1-v2; })
|
.def("__sub__", [](gp_Vec v1, gp_Vec v2) { return v1-v2; })
|
||||||
.def("__rmul__", [](gp_Vec v, double s) { return s*v; })
|
.def("__rmul__", [](gp_Vec v, double s) { return s*v; })
|
||||||
.def("__neg__", [](gp_Vec v) { return -v; })
|
.def("__neg__", [](gp_Vec v) { return -v; })
|
||||||
.def("__xor__", [](gp_Vec v1, gp_Vec v2) { return v1^v2; })
|
.def("__xor__", [](gp_Vec v1, gp_Vec v2) { return v1^v2; })
|
||||||
|
|
||||||
|
.def("__lt__", [](gp_Vec v, double val)
|
||||||
|
{
|
||||||
|
cout << "vec, lt v - " << netgen::occ2ng(v) << ", val = " << val << endl;
|
||||||
|
return DirectionalInterval(v) < val;
|
||||||
|
})
|
||||||
|
.def("__gt__", [](gp_Vec v, double val)
|
||||||
|
{
|
||||||
|
cout << "vec, gt v - " << netgen::occ2ng(v) << ", val = " << val << endl;
|
||||||
|
return DirectionalInterval(v) > val;
|
||||||
|
})
|
||||||
;
|
;
|
||||||
|
|
||||||
py::class_<gp_Dir>(m, "gp_Dir")
|
py::class_<gp_Dir>(m, "gp_Dir")
|
||||||
@ -242,6 +256,30 @@ DLL_HEADER void ExportNgOCCBasic(py::module &m)
|
|||||||
throw Exception("OCC-Points only in 2D or 3D");
|
throw Exception("OCC-Points only in 2D or 3D");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
m.def("Vec", [](double x, double y) { return gp_Vec2d(x,y); });
|
||||||
|
m.def("Vec", [](double x, double y, double z) { return gp_Vec(x,y,z); });
|
||||||
|
m.def("Vec", [](std::vector<double> p)
|
||||||
|
{
|
||||||
|
if (p.size() == 2)
|
||||||
|
return py::cast(gp_Vec2d(p[0], p[1]));
|
||||||
|
if (p.size() == 3)
|
||||||
|
return py::cast(gp_Vec(p[0], p[1], p[2]));
|
||||||
|
throw Exception("OCC-Vecs only in 2D or 3D");
|
||||||
|
});
|
||||||
|
|
||||||
|
m.def("Dir", [](double x, double y) { return gp_Dir2d(x,y); });
|
||||||
|
m.def("Dir", [](double x, double y, double z) { return gp_Dir(x,y,z); });
|
||||||
|
m.def("Dir", [](std::vector<double> p)
|
||||||
|
{
|
||||||
|
if (p.size() == 2)
|
||||||
|
return py::cast(gp_Dir2d(p[0], p[1]));
|
||||||
|
if (p.size() == 3)
|
||||||
|
return py::cast(gp_Dir(p[0], p[1], p[2]));
|
||||||
|
throw Exception("OCC-Dirs only in 2D or 3D");
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
py::class_<gp_Ax2d>(m, "gp_Ax2d")
|
py::class_<gp_Ax2d>(m, "gp_Ax2d")
|
||||||
.def(py::init([](gp_Pnt2d p, gp_Dir2d d) {
|
.def(py::init([](gp_Pnt2d p, gp_Dir2d d) {
|
||||||
@ -281,6 +319,20 @@ DLL_HEADER void ExportNgOCCBasic(py::module &m)
|
|||||||
.def("Transformation", [](const TopLoc_Location & loc) { return loc.Transformation(); })
|
.def("Transformation", [](const TopLoc_Location & loc) { return loc.Transformation(); })
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
py::class_<DirectionalInterval> (m, "DirectionalInterval")
|
||||||
|
.def("__lt__", [](DirectionalInterval i, double val)
|
||||||
|
{
|
||||||
|
cout << "directionalinterval, lt, imin/max = " << i.minval << " / " << i.maxval << endl;
|
||||||
|
return i < val;
|
||||||
|
})
|
||||||
|
.def("__gt__", [](DirectionalInterval i, double val)
|
||||||
|
{
|
||||||
|
cout << "directionalinterval, gt, imin/max = " << i.minval << " / " << i.maxval << endl;
|
||||||
|
return i > val;
|
||||||
|
})
|
||||||
|
;
|
||||||
|
|
||||||
py::implicitly_convertible<py::tuple, gp_Pnt>();
|
py::implicitly_convertible<py::tuple, gp_Pnt>();
|
||||||
py::implicitly_convertible<py::tuple, gp_Vec>();
|
py::implicitly_convertible<py::tuple, gp_Vec>();
|
||||||
py::implicitly_convertible<py::tuple, gp_Dir>();
|
py::implicitly_convertible<py::tuple, gp_Dir>();
|
||||||
|
@ -56,6 +56,8 @@
|
|||||||
#include <BOPTools_AlgoTools.hxx>
|
#include <BOPTools_AlgoTools.hxx>
|
||||||
#include <IntTools_Context.hxx>
|
#include <IntTools_Context.hxx>
|
||||||
|
|
||||||
|
#include <python_occ.hpp>
|
||||||
|
|
||||||
#if OCC_VERSION_MAJOR>=7 && OCC_VERSION_MINOR>=4
|
#if OCC_VERSION_MAJOR>=7 && OCC_VERSION_MINOR>=4
|
||||||
#define OCC_HAVE_DUMP_JSON
|
#define OCC_HAVE_DUMP_JSON
|
||||||
#endif
|
#endif
|
||||||
@ -683,6 +685,17 @@ DLL_HEADER void ExportNgOCCShapes(py::module &m)
|
|||||||
return BRepBuilderAPI_Transform(shape, trafo).Shape();
|
return BRepBuilderAPI_Transform(shape, trafo).Shape();
|
||||||
})
|
})
|
||||||
|
|
||||||
|
.def("Scale", [](const TopoDS_Shape & shape, const gp_Pnt p, double s)
|
||||||
|
{
|
||||||
|
// which one to choose ?
|
||||||
|
// version 1: Transoformation
|
||||||
|
gp_Trsf trafo;
|
||||||
|
trafo.SetScale(p, s);
|
||||||
|
return BRepBuilderAPI_Transform(shape, trafo).Shape();
|
||||||
|
// version 2: change location
|
||||||
|
// ...
|
||||||
|
}, py::arg("p"), py::arg("s"))
|
||||||
|
|
||||||
.def("bc", [](const TopoDS_Shape & shape, const string & name)
|
.def("bc", [](const TopoDS_Shape & shape, const string & name)
|
||||||
{
|
{
|
||||||
for (TopExp_Explorer e(shape, TopAbs_FACE); e.More(); e.Next())
|
for (TopExp_Explorer e(shape, TopAbs_FACE); e.More(); e.Next())
|
||||||
@ -861,14 +874,18 @@ DLL_HEADER void ExportNgOCCShapes(py::module &m)
|
|||||||
}
|
}
|
||||||
throw Exception("no face found for extrusion");
|
throw Exception("no face found for extrusion");
|
||||||
})
|
})
|
||||||
|
|
||||||
.def("Revolve", [](const TopoDS_Shape & shape, const gp_Ax1 &A, const double D) {
|
.def("Extrude", [] (const TopoDS_Shape & face, gp_Vec vec) {
|
||||||
for (TopExp_Explorer e(shape, TopAbs_FACE); e.More(); e.Next())
|
return BRepPrimAPI_MakePrism (face, vec).Shape();
|
||||||
{
|
|
||||||
return BRepPrimAPI_MakeRevol (shape, A, D*M_PI/180).Shape();
|
|
||||||
}
|
|
||||||
throw Exception("no face found for revolve");
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
.def("Revolve", [](const TopoDS_Shape & shape, const gp_Ax1 &A, const double D) {
|
||||||
|
for (TopExp_Explorer e(shape, TopAbs_FACE); e.More(); e.Next())
|
||||||
|
{
|
||||||
|
return BRepPrimAPI_MakeRevol (shape, A, D*M_PI/180).Shape();
|
||||||
|
}
|
||||||
|
throw Exception("no face found for revolve");
|
||||||
|
})
|
||||||
|
|
||||||
.def("Find", [](const TopoDS_Shape & shape, gp_Pnt p)
|
.def("Find", [](const TopoDS_Shape & shape, gp_Pnt p)
|
||||||
{
|
{
|
||||||
@ -1298,7 +1315,16 @@ DLL_HEADER void ExportNgOCCShapes(py::module &m)
|
|||||||
selected.push_back(s);
|
selected.push_back(s);
|
||||||
return selected;
|
return selected;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
.def("__getitem__",[](const ListOfShapes & self, DirectionalInterval interval)
|
||||||
|
{
|
||||||
|
ListOfShapes selected;
|
||||||
|
for (auto s : self)
|
||||||
|
if (interval.Contains(Center(s)))
|
||||||
|
selected.push_back(s);
|
||||||
|
return selected;
|
||||||
|
})
|
||||||
|
|
||||||
.def("Sorted",[](ListOfShapes self, gp_Vec dir)
|
.def("Sorted",[](ListOfShapes self, gp_Vec dir)
|
||||||
{
|
{
|
||||||
std::map<Handle(TopoDS_TShape), double> sortval;
|
std::map<Handle(TopoDS_TShape), double> sortval;
|
||||||
|
Loading…
Reference in New Issue
Block a user