Interface IProvidesPositioningReferences
- Namespace
- VirtualLabAPI.Core.Numerics
- Assembly
- VirtualLabAPI.dll
Interface to be implemented by all classes that contain coordinate systems that can serve as positioning references.
public interface IProvidesPositioningReferences
Methods
ContainsReferenceCoordinateSystemWithKey(string)
Method that gives a flag, indicating whether or not a coordinate system is contained that can be accessed via a certain key.
bool ContainsReferenceCoordinateSystemWithKey(string key)
Parameters
keystringKey to be checked.
Returns
- bool
Flag, indicating whether or not a coordinate system is contained that can be accessed via the given key.
GetReferenceCoordinateSystemWithKey(string)
Method that gives the coordinate system the given key is assigned to.
CartesianCoordinateSystem GetReferenceCoordinateSystemWithKey(string key)
Parameters
keystringKey that is assigned to one contained coordinate system.
Returns
- CartesianCoordinateSystem
coordinate system the given key is assigned to.