18
18
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
*/
20
20
21
+ #include " overlap/overlap.hpp"
22
+
23
+ #include < pybind11/eigen.h>
24
+ #include < pybind11/numpy.h>
25
+ #include < pybind11/pybind11.h>
26
+ #include < pybind11/stl.h>
27
+
21
28
#include < cctype>
22
29
#include < locale>
23
30
#include < map>
24
31
#include < typeindex>
25
- #include < typeinfo>
26
-
27
- #include " pybind11/eigen.h"
28
- #include " pybind11/numpy.h"
29
- #include " pybind11/pybind11.h"
30
- #include " pybind11/stl.h"
31
-
32
- #include " overlap/overlap.hpp"
33
32
34
33
namespace py = pybind11;
35
34
@@ -42,64 +41,62 @@ using namespace overlap;
42
41
43
42
template <typename Element,
44
43
typename = std::enable_if_t <detail::is_element_v<Element>>>
45
- void createBindings (py::module& m) {
44
+ void create_bindings (py::module& m) {
46
45
static const auto element_names = std::map<std::type_index, std::string>{
47
46
{std::type_index (typeid (Tetrahedron)), " Tetrahedron" },
48
47
{std::type_index (typeid (Wedge)), " Wedge" },
49
48
{std::type_index (typeid (Hexahedron)), " Hexahedron" }};
50
49
51
50
const auto & name = element_names.at (std::type_index (typeid (Element)));
52
- const auto nameLower =
51
+ const auto name_lower =
53
52
std::tolower (name.front (), std::locale{}) + name.substr (1 );
54
53
55
- static constexpr auto nrVertices = detail ::num_vertices<Element> ();
54
+ static constexpr auto num_vertices = Element ::num_vertices ();
56
55
57
56
py::class_<Element>(m, name.c_str ())
58
- .def (py::init<std::array<Vector, nrVertices >>(), py::arg (" vertices" ))
57
+ .def (py::init<std::array<Vector, num_vertices >>(), py::arg (" vertices" ))
59
58
.def (py::init ([](py::array_t <double > vertices) {
60
59
auto proxy = vertices.unchecked <2 >();
61
- if (proxy.shape (0 ) != nrVertices || proxy.shape (1 ) != 3 ) {
60
+ if (proxy.shape (0 ) != num_vertices || proxy.shape (1 ) != 3 ) {
62
61
throw std::invalid_argument{
63
62
" invalid shape for vertex list, must be (" +
64
- std::to_string (nrVertices ) + " , 3)" };
63
+ std::to_string (num_vertices ) + " , 3)" };
65
64
}
66
65
67
- std::array<Vector, nrVertices > tmp{};
66
+ std::array<Vector, num_vertices > tmp{};
68
67
for (py::ssize_t v = 0 ; v < proxy.shape (0 ); ++v) {
69
68
tmp[v] = Vector{proxy (v, 0 ), proxy (v, 1 ), proxy (v, 2 )};
70
69
}
71
70
72
71
return Element{std::move (tmp)};
73
72
}),
74
73
py::arg (" vertices" ))
75
- .def_readonly (" vertices" , &Element::vertices,
76
- " Return the vertices of the element." )
77
- .def_readonly (" center" , &Element::center,
78
- " Return the center point of the element." )
79
- .def_readonly (" volume" , &Element::volume,
80
- " Return the volume of the element." )
81
- .def_property_readonly (
82
- " surface_area" ,
83
- [](const Element& elem) { return elem.surface_area (); },
84
- " Return the surface area of the element." );
74
+ .def_property_readonly (" vertices" , &Element::vertices,
75
+ " Return the vertices of the element." )
76
+ .def_property_readonly (" center" , &Element::center,
77
+ " Return the center point of the element." )
78
+ .def_property_readonly (" volume" , &Element::volume,
79
+ " Return the volume of the element." )
80
+ .def_property_readonly (" surface_area" , &Element::surface_area,
81
+ " Return the surface area of the element." );
85
82
86
83
m.def (
87
84
" overlap_volume" ,
88
85
overload_cast_<const Sphere&, const Element&>()(&overlap_volume<Element>),
89
- " sphere" _a, py::arg{nameLower .c_str ()},
90
- (" Calculate the overlap volume of a sphere and a " + nameLower + " ." )
86
+ " sphere" _a, py::arg{name_lower .c_str ()},
87
+ (" Calculate the overlap volume of a sphere and a " + name_lower + " ." )
91
88
.c_str ());
92
89
93
90
m.def (" overlap_area" ,
94
91
overload_cast_<const Sphere&, const Element&>()(&overlap_area<Element>),
95
- " sphere" _a, py::arg{nameLower .c_str ()},
96
- (" Calculate the overlap area of a sphere and a " + nameLower + " ." )
92
+ " sphere" _a, py::arg{name_lower .c_str ()},
93
+ (" Calculate the overlap area of a sphere and a " + name_lower + " ." )
97
94
.c_str ());
98
95
}
99
96
100
97
PYBIND11_MODULE (overlap, m) {
101
98
m.doc () = R"pbdoc(
102
- Pybind11 example plugin
99
+ Overlap Python bindings
103
100
-----------------------
104
101
105
102
This originates fom CPP
@@ -128,7 +125,7 @@ PYBIND11_MODULE(overlap, m) {
128
125
" surface_area" , [](const Sphere& s) { return s.surface_area (); },
129
126
" Return the surface area of the sphere." );
130
127
131
- createBindings <Tetrahedron>(m);
132
- createBindings <Wedge>(m);
133
- createBindings <Hexahedron>(m);
128
+ create_bindings <Tetrahedron>(m);
129
+ create_bindings <Wedge>(m);
130
+ create_bindings <Hexahedron>(m);
134
131
}
0 commit comments