implement generic uIso/vIso methods in GeometrySurfacePy

This commit is contained in:
wmayer
2016-10-17 16:10:33 +02:00
parent 1f1cd3379e
commit 5365678f72
6 changed files with 117 additions and 60 deletions
-12
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());