| 134 | } |
| 135 | |
| 136 | static int Tcl_ops_getTangent(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 137 | wrapper->resetCommandLine(argc, 1, argv); |
| 138 | |
| 139 | if (OPS_getTangent() < 0) return TCL_ERROR; |
| 140 | |
| 141 | return TCL_OK; |
| 142 | } |
| 143 | |
| 144 | static int Tcl_ops_getDampTangent(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 145 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected