| 310 | } |
| 311 | |
| 312 | static PyObject *Py_ops_getTangent(PyObject *self, PyObject *args) |
| 313 | { |
| 314 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 315 | |
| 316 | if (OPS_getTangent() < 0) { |
| 317 | opserr<<(void*)0; |
| 318 | return NULL; |
| 319 | } |
| 320 | |
| 321 | return wrapper->getResults(); |
| 322 | } |
| 323 | |
| 324 | static PyObject *Py_ops_getDampTangent(PyObject *self, PyObject *args) |
| 325 | { |
nothing calls this directly
no test coverage detected