Torus¶
Qualified name: manim.mobject.three\_d.three\_dimensions.Torus
- class Torus(major_radius=3, minor_radius=1, u_range=(0, 6.283185307179586), v_range=(0, 6.283185307179586), resolution=None, **kwargs)[source]¶
Bases:
Surface
A torus.
- Parameters:
major_radius (float) – Distance from the center of the tube to the center of the torus.
minor_radius (float) – Radius of the tube.
u_range (Sequence[float]) – The range of the
u
variable:(u_min, u_max)
.v_range (Sequence[float]) – The range of the
v
variable:(v_min, v_max)
.resolution (tuple[int, int] | None) – The number of samples taken of the
Torus
. A tuple can be used to define different resolutions foru
andv
respectively.
Examples
Example: ExampleTorus ¶
from manim import * class ExampleTorus(ThreeDScene): def construct(self): axes = ThreeDAxes() torus = Torus() self.set_camera_orientation(phi=75 * DEGREES, theta=30 * DEGREES) self.add(axes, torus)
class ExampleTorus(ThreeDScene): def construct(self): axes = ThreeDAxes() torus = Torus() self.set_camera_orientation(phi=75 * DEGREES, theta=30 * DEGREES) self.add(axes, torus)
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.
- _original__init__(major_radius=3, minor_radius=1, u_range=(0, 6.283185307179586), v_range=(0, 6.283185307179586), resolution=None, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
- Parameters:
major_radius (float)
minor_radius (float)
u_range (Sequence[float])
v_range (Sequence[float])
resolution (tuple[int, int] | None)
- Return type:
None