| 286 | } |
| 287 | |
| 288 | static PyObject *Py_ops_getStrain(PyObject *self, PyObject *args) |
| 289 | { |
| 290 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 291 | |
| 292 | if (OPS_getStrain() < 0) { |
| 293 | opserr<<(void*)0; |
| 294 | return NULL; |
| 295 | } |
| 296 | |
| 297 | return wrapper->getResults(); |
| 298 | } |
| 299 | |
| 300 | static PyObject *Py_ops_getStress(PyObject *self, PyObject *args) |
| 301 | { |
nothing calls this directly
no test coverage detected