implement generic uIso/vIso methods in GeometrySurfacePy

This commit is contained in:
wmayer
2016-10-17 16:10:33 +02:00
parent c80a8a271f
commit 56721e6a37
6 changed files with 117 additions and 60 deletions

View File

@@ -78,18 +78,6 @@ int OffsetSurfacePy::PyInit(PyObject* args, PyObject* /*kwd*/)
}
}
PyObject* OffsetSurfacePy::uIso(PyObject *)
{
PyErr_SetString(PyExc_NotImplementedError, "Not yet implemented");
return 0;
}
PyObject* OffsetSurfacePy::vIso(PyObject *)
{
PyErr_SetString(PyExc_NotImplementedError, "Not yet implemented");
return 0;
}
Py::Float OffsetSurfacePy::getOffsetValue(void) const
{
Handle_Geom_OffsetSurface surf = Handle_Geom_OffsetSurface::DownCast(getGeometryPtr()->handle());