

Public Member Functions | |
| GeoSatPositionClass () | |
| TclObject * | create (int argc, const char *const *argv) |
|
|
Definition at line 78 of file satposition.cc.
00078 : TclClass("Position/Sat/Geo") {} |
|
||||||||||||
|
Definition at line 79 of file satposition.cc.
00079 {
00080 if (argc == 5)
00081 return (new GeoSatPosition(double(atof(argv[4]))));
00082 else
00083 return (new GeoSatPosition);
00084 }
|
1.3.3