Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/sage/plot/plot3d/all.py
8815 views
1
2
from plot3d import plot3d, cylindrical_plot3d, spherical_plot3d, Spherical, SphericalElevation, Cylindrical
3
from parametric_plot3d import parametric_plot3d
4
from plot_field3d import plot_vector_field3d
5
6
# We lazy_import the following modules since they import numpy which slows down sage startup
7
from sage.misc.lazy_import import lazy_import
8
lazy_import("sage.plot.plot3d.implicit_plot3d",["implicit_plot3d"])
9
10
from list_plot3d import list_plot3d
11
from revolution_plot3d import revolution_plot3d
12
13
from platonic import tetrahedron, cube, octahedron, dodecahedron, icosahedron
14
15
from shapes2 import sphere, line3d, polygon3d, point3d, text3d, bezier3d
16
17
from shapes import arrow3d
18
19
#from shapes import Box, ColorCube, Cone, Cylinder, LineSegment, Arrow, Sphere, Torus, Text as Text3D
20
#from parametric_surface import ParametricSurface, MobiusStrip
21
#from plot3d import plot3d, axes as axes3d
22
23
24
25
26