| 713 | } |
| 714 | |
| 715 | static PyObject *Py_ops_block2d(PyObject *self, PyObject *args) |
| 716 | { |
| 717 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 718 | |
| 719 | if (OPS_doBlock2D() < 0) { |
| 720 | opserr<<(void*)0; |
| 721 | return NULL; |
| 722 | } |
| 723 | |
| 724 | return wrapper->getResults(); |
| 725 | } |
| 726 | |
| 727 | static PyObject *Py_ops_block3d(PyObject *self, PyObject *args) |
| 728 | { |
nothing calls this directly
no test coverage detected