Part: expose ShapeFix and ShapeFix_Face to Python

This commit is contained in:
wmayer
2022-05-01 12:15:09 +02:00
parent f3e941a382
commit b6cd635cc1
7 changed files with 741 additions and 1 deletions

View File

@@ -45,8 +45,11 @@ PyObject *ShapeFix_RootPy::PyMake(struct _typeobject *, PyObject *, PyObject *)
}
// constructor method
int ShapeFix_RootPy::PyInit(PyObject* /*args*/, PyObject* /*kwds*/)
int ShapeFix_RootPy::PyInit(PyObject* args, PyObject* /*kwds*/)
{
if (!PyArg_ParseTuple(args, ""))
return -1;
return 0;
}