Expand description
Module containing basic types representing coordinate systems.
Structs§
- Point
- Struct representing a point on the manifold. The information about the coordinate system is saved in the type parameter, so that only operations on objects belonging to the same coordinate system will be allowed.
Traits§
- Conversion
To - Trait used for conversions between different coordinate systems. Implementing
ConversionTo<T>
for aCoordinateSystem
will allow objects in that system to be converted to the systemT
(note thatT
also has to be aCoordinateSystem
). - Coordinate
System CoordinateSystem
marks a struct (usually a unit struct) as representing a coordinate system.