| 298 | } |
| 299 | |
| 300 | static PyObject *Py_ops_getStress(PyObject *self, PyObject *args) |
| 301 | { |
| 302 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 303 | |
| 304 | if (OPS_getStress() < 0) { |
| 305 | opserr<<(void*)0; |
| 306 | return NULL; |
| 307 | } |
| 308 | |
| 309 | return wrapper->getResults(); |
| 310 | } |
| 311 | |
| 312 | static PyObject *Py_ops_getTangent(PyObject *self, PyObject *args) |
| 313 | { |
nothing calls this directly
no test coverage detected