| 304 | } |
| 305 | |
| 306 | PyObject* 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 | |
| 322 | PyObject* BRepOffsetAPI_MakePipeShellPy::makeSolid(PyObject* args) |
| 323 | { |
no test coverage detected