symbrim.utilities.plotting.PlotBrimMixin¶
- class symbrim.utilities.plotting.PlotBrimMixin(inertial_frame: ReferenceFrame, zero_point: Point, brim_object: BrimBase)¶
Bases:
object
Mixin class for plotting SymBRiM objects.
Attributes
Coordinate where the annotation text is displayed.
Plot objects.
Methods
Initialize a plot object of the SymBRiM model.
Add a sympy body to the scene.
Add a sympy ReferenceFrame to the scene.
Add a sympy Vector to the scene.
Add a plot object to the scene.
Add a sympy Vector to the scene.
Add a sympy Vector to the scene.
Return the plot_object based on a sympy object.
Get coordinate of the point as expressions.
- __init__(inertial_frame: ReferenceFrame, zero_point: Point, brim_object: BrimBase) None ¶
Initialize a plot object of the SymBRiM model.
- __weakref__¶
list of weak references to the object (if defined)
- add_body(body, **kwargs)¶
Add a sympy body to the scene.
- Parameters:
body (RigidBody or Particle) – The body that should be plotted.
**kwargs (dict, optional) – Kwargs that are parsed to both internally used plot objects.
- Returns:
The added plot object.
- Return type:
PlotBody
- add_frame(frame: ReferenceFrame, origin: Point | Vector | None = None, **kwargs)¶
Add a sympy ReferenceFrame to the scene.
- Parameters:
frame (ReferenceFrame) – The reference frame that should be plotted.
origin (Point, Vector, optional) – The origin of the reference frame. Default is the zero_point.
**kwargs (dict, optional) – Kwargs that are parsed to plot object.
- Returns:
The added plot object.
- Return type:
PlotFrame
- add_line(points: Iterable[Point | Vector], name: str | None = None, **kwargs)¶
Add a sympy Vector to the scene.
- add_plot_object(plot_object: PlotBase)¶
Add a plot object to the scene.
- Parameters:
plot_object (PlotBase) – The plot object that should be added.
- add_point(point: Point | Vector, **kwargs) type[PlotBase] ¶
Add a sympy Vector to the scene.
- Parameters:
point (Point or Vector) – The point or vector to be plotted as point in space.
**kwargs – Keyword arguments are parsed to the plot object.
- Returns:
The added plot object.
- Return type:
PlotPoint
- add_vector(vector: Vector, origin: Point | Vector | None = None, **kwargs)¶
Add a sympy Vector to the scene.
- Parameters:
vector (Vector) – The vector that should be plotted with respect to the zero_point.
origin (Point, Vector, optional) – The origin of the reference frame. Default is the zero_point.
**kwargs (dict, optional) – Kwargs that are parsed to the plot object.
- Returns:
The added plot object.
- Return type:
PlotVector
- get_plot_object(sympy_object: Any | str) PlotBase | None ¶
Return the plot_object based on a sympy object.
Explanation
Return the
plot_object
based on a provided sympy object. For exampleReferenceFrame('N')
will give thePlotFrame
of that reference frame. If theplot_object
has not been added it will returnNone
.- Parameters:
sympy_object (Any or str) – SymPy object to search for. If it is a string it will search for the name.
- Returns:
Retrieved plot object.
- Return type:
PlotBase or None