Sketcher: Extend GeometryFacade and ExternaGeometryFacade to GeometryMode
This commit is contained in:
committed by
abdullahtahiriyo
parent
092a1ee39d
commit
eb929ad217
@@ -117,6 +117,17 @@ void GeometryFacadePy::setInternalType(Py::String arg)
|
||||
throw Py::ValueError("Argument is not a valid internal geometry type.");
|
||||
}
|
||||
|
||||
Py::Boolean GeometryFacadePy::getBlocked(void) const
|
||||
{
|
||||
return Py::Boolean(getGeometryFacadePtr()->getBlocked());
|
||||
}
|
||||
|
||||
void GeometryFacadePy::setBlocked(Py::Boolean arg)
|
||||
{
|
||||
getGeometryFacadePtr()->setBlocked(arg);
|
||||
}
|
||||
|
||||
|
||||
PyObject* GeometryFacadePy::mirror(PyObject *args)
|
||||
{
|
||||
PyObject* o;
|
||||
|
||||
Reference in New Issue
Block a user