simulation.utils.geometry.frame module¶
Coordinate frame class that can be connected to other frames.
The idea of this class is to provide a simple API of dealing with geometric objects in multiple coordinate frames easily.
Reference¶
-
class
Frame(name: str)[source]¶ Bases:
object-
name: str¶ Name of the frame.
-
_connected_frames: Dict[str, Transform]¶ Dictionary with other connected frames.
-
connect_to(frame: simulation.utils.geometry.frame.Frame, *, transformation_to_frame: Transform)[source]¶ Connect this frame to another frame through a transformation.
This also connects the other frame to this one.
-