CoordinateSystemList class is used to control the list of CoordinateSystem objects. It allows coordinate systems to be created, duplicated, and deleted.
The class can be called from Model class.
.
More...
Public Member Functions | |
| CoordinateSystem * | CreateCylindrical (String &name) |
| Creates a cylindrical coordinate system. More... | |
| CoordinateSystem * | CreateRectangular (String &name) |
| Creates a rectangular coordinate system. More... | |
| void | DeleteCoordinateSystem (Variant &var) |
| Deletes a coordinate system by specifying the name or index. More... | |
| CoordinateSystem * | DuplicateCoordinateSystem (Variant &var) |
| Duplicates a coordinate system by specifying the name or index of the coordinate system. More... | |
| CoordinateSystem * | GetCoordinateSystem (Variant &var) |
| Returns the settings of the coordinate system for the specified name or index. More... | |
| bool | IsValid () |
| Returns True if an object is valid. More... | |
| int | NumCoordinateSystems () |
| Returns the number of the coordinate systems as an integer. More... | |
CoordinateSystemList class is used to control the list of CoordinateSystem objects. It allows coordinate systems to be created, duplicated, and deleted.
The class can be called from Model class.
.
Example of obtaining the class object:
| CoordinateSystem * CoordinateSystemList::CreateCylindrical | ( | String & | name | ) |
Creates a cylindrical coordinate system.
| name | Name of the coordinate system |
| CoordinateSystem * CoordinateSystemList::CreateRectangular | ( | String & | name | ) |
Creates a rectangular coordinate system.
| name | Name of the coordinate system |
| void CoordinateSystemList::DeleteCoordinateSystem | ( | Variant & | var | ) |
Deletes a coordinate system by specifying the name or index.
| var | Coordinate system name/Coordinate system index |
| CoordinateSystem * CoordinateSystemList::DuplicateCoordinateSystem | ( | Variant & | var | ) |
Duplicates a coordinate system by specifying the name or index of the coordinate system.
| var | Coordinate system name/Coordinate system index |
| CoordinateSystem * CoordinateSystemList::GetCoordinateSystem | ( | Variant & | var | ) |
Returns the settings of the coordinate system for the specified name or index.
| var | Coordinate system name/Coordinate system index |
| bool CoordinateSystemList::IsValid | ( | ) |
Returns True if an object is valid.
| int CoordinateSystemList::NumCoordinateSystems | ( | ) |
Returns the number of the coordinate systems as an integer.