| 1169 | } |
| 1170 | |
| 1171 | static PyObject *Py_ops_setNodeVel(PyObject *self, PyObject *args) |
| 1172 | { |
| 1173 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 1174 | |
| 1175 | if (OPS_setNodeVel() < 0) { |
| 1176 | opserr<<(void*)0; |
| 1177 | return NULL; |
| 1178 | } |
| 1179 | |
| 1180 | return wrapper->getResults(); |
| 1181 | } |
| 1182 | |
| 1183 | static PyObject *Py_ops_setNodeDisp(PyObject *self, PyObject *args) |
| 1184 | { |
nothing calls this directly
no test coverage detected