Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b15fd9c

Browse files
committed
Fix module wrapper
1 parent cdfaf20 commit b15fd9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tri/_tri_wrapper.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "_tri.h"
22

33
PYBIND11_MODULE(_tri, m) {
4-
py::class_<Triangulation>(m, "Triangulation",
4+
py::class_<Triangulation>(m, "Triangulation")
55
.def(py::init<const Triangulation::CoordinateArray&,
66
const Triangulation::CoordinateArray&,
77
const Triangulation::TriangleArray&,
@@ -38,7 +38,7 @@ PYBIND11_MODULE(_tri, m) {
3838
"--\n\n"
3939
"Set or clear the mask array.");
4040

41-
py::class_<TriContourGenerator>(m, "TriContourGenerator",
41+
py::class_<TriContourGenerator>(m, "TriContourGenerator")
4242
.def(py::init<Triangulation&,
4343
const TriContourGenerator::CoordinateArray&>(),
4444
py::arg("triangulation"),
@@ -57,7 +57,7 @@ PYBIND11_MODULE(_tri, m) {
5757
"--\n\n"
5858
"Create and return a filled contour.");
5959

60-
py::class_<TrapezoidMapTriFinder>(m, "TrapezoidMapTriFinder",
60+
py::class_<TrapezoidMapTriFinder>(m, "TrapezoidMapTriFinder")
6161
.def(py::init<Triangulation&>(),
6262
py::arg("triangulation"),
6363
"TrapezoidMapTriFinder(triangulation)\n"

0 commit comments

Comments
 (0)