| 678 | } |
| 679 | |
| 680 | static int Tcl_ops_setNodeVel(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 681 | wrapper->resetCommandLine(argc, 1, argv); |
| 682 | |
| 683 | if (OPS_setNodeVel() < 0) return TCL_ERROR; |
| 684 | |
| 685 | return TCL_OK; |
| 686 | } |
| 687 | |
| 688 | static int Tcl_ops_setNodeDisp(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 689 | wrapper->resetCommandLine(argc, 1, argv); |
nothing calls this directly
no test coverage detected