Skip to content

Commit 297fc74

Browse files
committed
Fix parameter naming
1 parent b3c8123 commit 297fc74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ PYBIND11_MODULE(xatlas, m)
142142
Atlas::bind(m);
143143

144144
// Convenience functions
145-
m.def("parametrize", &parametrize, py::arg("positions"), py::arg("indices"), py::arg("uvs") = std::nullopt, py::arg("normals") = std::nullopt);
145+
m.def("parametrize", &parametrize, py::arg("positions"), py::arg("indices"), py::arg("normals") = std::nullopt, py::arg("uvs") = std::nullopt);
146146

147147
// I/O functions
148148
m.def("export", &exportObj, py::arg("path"), py::arg("positions"), py::arg("indices") = std::nullopt, py::arg("uvs") = std::nullopt, py::arg("normals") = std::nullopt);

0 commit comments

Comments
 (0)