+ Rename methods

This commit is contained in:
wmayer
2014-01-12 21:42:46 +01:00
parent 99d10a6e49
commit ca3b87a719
2 changed files with 10 additions and 6 deletions

View File

@@ -1274,7 +1274,7 @@ PyObject* TopoShapePy::project(PyObject *args)
return 0;
}
PyObject* TopoShapePy::makeCylindricalProjection(PyObject *args)
PyObject* TopoShapePy::makeParallelProjection(PyObject *args)
{
PyObject *pShape, *pDir;
if (PyArg_ParseTuple(args, "O!O!", &(Part::TopoShapePy::Type), &pShape, &Base::VectorPy::Type, &pDir)) {
@@ -1296,7 +1296,7 @@ PyObject* TopoShapePy::makeCylindricalProjection(PyObject *args)
return 0;
}
PyObject* TopoShapePy::makeConicalProjection(PyObject *args)
PyObject* TopoShapePy::makePerspectiveProjection(PyObject *args)
{
PyObject *pShape, *pDir;
if (PyArg_ParseTuple(args, "O!O!", &(Part::TopoShapePy::Type), &pShape, &Base::VectorPy::Type, &pDir)) {