1
1
#include " _tri.h"
2
2
3
3
PYBIND11_MODULE (_tri, m) {
4
- py::class_<Triangulation>(m, " Triangulation" ,
4
+ py::class_<Triangulation>(m, " Triangulation" )
5
5
.def (py::init<const Triangulation::CoordinateArray&,
6
6
const Triangulation::CoordinateArray&,
7
7
const Triangulation::TriangleArray&,
@@ -38,7 +38,7 @@ PYBIND11_MODULE(_tri, m) {
38
38
" --\n\n "
39
39
" Set or clear the mask array." );
40
40
41
- py::class_<TriContourGenerator>(m, " TriContourGenerator" ,
41
+ py::class_<TriContourGenerator>(m, " TriContourGenerator" )
42
42
.def (py::init<Triangulation&,
43
43
const TriContourGenerator::CoordinateArray&>(),
44
44
py::arg (" triangulation" ),
@@ -57,7 +57,7 @@ PYBIND11_MODULE(_tri, m) {
57
57
" --\n\n "
58
58
" Create and return a filled contour." );
59
59
60
- py::class_<TrapezoidMapTriFinder>(m, " TrapezoidMapTriFinder" ,
60
+ py::class_<TrapezoidMapTriFinder>(m, " TrapezoidMapTriFinder" )
61
61
.def (py::init<Triangulation&>(),
62
62
py::arg (" triangulation" ),
63
63
" TrapezoidMapTriFinder(triangulation)\n "
0 commit comments