Documentation Index
Fetch the complete documentation index at: https://manimvtk.mathify.dev/llms.txt
Use this file to discover all available pages before exploring further.
Coordinate Systems
Axes
Axes(
x_range=[-7, 7, 1],
y_range=[-5, 5, 1],
**kwargs
)
2D coordinate axes.
NumberPlane
NumberPlane(
x_range=[-10, 10, 1],
y_range=[-10, 10, 1],
**kwargs
)
Grid plane with axes.
ThreeDAxes
ThreeDAxes(
x_range=[-6, 6, 1],
y_range=[-5, 5, 1],
z_range=[-4, 4, 1]
)
3D coordinate system.
Graphing
Plotting Functions
axes = Axes(x_range=[-3, 3], y_range=[-2, 2])
graph = axes.plot(lambda x: x**2, color=BLUE)
Labels
axes = Axes()
labels = axes.get_axis_labels(x_label="x", y_label="f(x)")
See Also
Examples
Graphing examples