MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / getStatus

Method getStatus

src/Mod/Part/App/BRepOffsetAPI_MakePipeShellPyImp.cpp:306–320  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304}
305
306PyObject* BRepOffsetAPI_MakePipeShellPy::getStatus(PyObject* args)
307{
308 if (!PyArg_ParseTuple(args, "")) {
309 return nullptr;
310 }
311
312 try {
313 Standard_Integer val = this->getBRepOffsetAPI_MakePipeShellPtr()->GetStatus();
314 return Py::new_reference_to(Py::Long(val));
315 }
316 catch (Standard_Failure& e) {
317 PyErr_SetString(PartExceptionOCCError, e.GetMessageString());
318 return nullptr;
319 }
320}
321
322PyObject* BRepOffsetAPI_MakePipeShellPy::makeSolid(PyObject* args)
323{

Callers 9

setupCopyOnChangeMethod · 0.45
applyChnMethod · 0.45
setPropertyMethod · 0.45
addOrRemovePropertyMethod · 0.45
setEditorModeMethod · 0.45
setPropertyStatusMethod · 0.45
getPropertyStatusMethod · 0.45
SaveMethod · 0.45
contextMenuEventMethod · 0.45

Calls 1

new_reference_toFunction · 0.85

Tested by

no test coverage detected