| 574 | } |
| 575 | |
| 576 | static PyObject *Py_ops_layer(PyObject *self, PyObject *args) |
| 577 | { |
| 578 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 579 | |
| 580 | if (OPS_Layer() < 0) { |
| 581 | opserr<<(void*)0; |
| 582 | return NULL; |
| 583 | } |
| 584 | |
| 585 | return wrapper->getResults(); |
| 586 | } |
| 587 | |
| 588 | static PyObject *Py_ops_geomTransf(PyObject *self, PyObject *args) |
| 589 | { |
nothing calls this directly
no test coverage detected