RoundOuter¶
- class manim_eng.components.base.modifiers.RoundOuter(terminals: list[Terminal], label: str | Value | None = None, annotation: str | Value | None = None, **kwargs: Any)¶
Bases:
ComponentModifier to add a circular outline to a component.
The diameter of the outline is equal to the side length of a square bipole.
Attributes
RoundOuter.animateUsed to animate the application of any method of
self.RoundOuter.animation_overridesRoundOuter.colorRoundOuter.depthThe depth of the mobject.
RoundOuter.fill_colorIf there are multiple colors (for gradient) this returns the first one
RoundOuter.heightThe height of the mobject.
RoundOuter.n_points_per_curveRoundOuter.sheen_factorRoundOuter.stroke_colorRoundOuter.terminalsThe list of terminals of the component.
RoundOuter.widthThe width of the mobject.
- _construct() None¶
Construct the shape of the component.
Code to build the component’s symbol goes in here and not in
__init__()(contrary to Manim’s standard). This is because the baseComponentclass has to perform initialisation both before (to set up the groups etc.) and after (to set the anchor positions for annotations) the component’s shape setup.