#include <Measure.h>
Static Public Member Functions | |
| void | createCommands (Tcl_Interp *) |
| void | deleteCommands (Tcl_Interp *) |
|
|
Definition at line 169 of file Measure.C. References Tcl_centerOfMass(), Tcl_centerOfNumber(), Tcl_loadCoords(), and Tcl_radiusOfGyration(). Referenced by ScriptTcl::measure(). 00169 {
00170 Tcl_CreateCommand(interp, "centerOfNumber", Tcl_centerOfNumber,
00171 (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
00172 Tcl_CreateCommand(interp, "centerOfMass", Tcl_centerOfMass,
00173 (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
00174 Tcl_CreateCommand(interp, "radiusOfGyration", Tcl_radiusOfGyration,
00175 (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
00176 Tcl_CreateObjCommand(interp, "loadCoords", Tcl_loadCoords,
00177 (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
00178 }
|
|
|
Definition at line 180 of file Measure.C. Referenced by ScriptTcl::measure(). 00180 {
00181 Tcl_DeleteCommand(interp, "centerOfNumber");
00182 Tcl_DeleteCommand(interp, "centerOfMass");
00183 Tcl_DeleteCommand(interp, "radiusOfGyration");
00184 Tcl_DeleteCommand(interp, "loadCoords");
00185 }
|
1.3.9.1