Dot#
Qualified name: manim.mobject.geometry.arc.Dot
- class Dot(point=array([0., 0., 0.]), radius=0.08, stroke_width=0, fill_opacity=1.0, color='#FFFFFF', **kwargs)[source]#
Bases:
Circle
A circle with a very small radius.
- Parameters
point (list | np.ndarray) – The location of the dot.
radius (float) – The radius of the dot.
stroke_width (float) – The thickness of the outline of the dot.
fill_opacity (float) – The opacity of the dot’s fill_colour
color (Color | str) – The color of the dot.
kwargs – Additional arguments to be passed to
Circle
Examples
Example: DotExample ¶
from manim import * class DotExample(Scene): def construct(self): dot1 = Dot(point=LEFT, radius=0.08) dot2 = Dot(point=ORIGIN) dot3 = Dot(point=RIGHT) self.add(dot1,dot2,dot3)
Methods
Attributes
animate
Used to animate the application of any method of
self
.animation_overrides
color
depth
The depth of the mobject.
fill_color
If there are multiple colors (for gradient) this returns the first one
height
The height of the mobject.
n_points_per_curve
sheen_factor
stroke_color
width
The width of the mobject.