Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/sage/plot/all.py
8815 views
1
from graphics import show_default, Graphics, is_Graphics
2
from plot import plot, graphics_array, list_plot, parametric_plot, polar_plot
3
from plot import plot_loglog, plot_semilogx, plot_semilogy
4
from plot import list_plot_loglog, list_plot_semilogx, list_plot_semilogy
5
from line import line, line2d
6
from arrow import arrow, arrow2d
7
from bar_chart import bar_chart
8
from bezier_path import bezier_path
9
from scatter_plot import scatter_plot
10
from disk import disk
11
from point import point, points, point2d
12
from matrix_plot import matrix_plot
13
from plot_field import plot_vector_field, plot_slope_field
14
from text import text
15
from polygon import polygon, polygon2d
16
from circle import circle
17
from ellipse import ellipse
18
from contour_plot import contour_plot, implicit_plot, region_plot
19
from density_plot import density_plot
20
21
from sage.misc.lazy_import import lazy_import
22
lazy_import("sage.plot.complex_plot",["complex_plot"])
23
24
from arc import arc
25
26
from animate import animate
27
28
from plot3d.tachyon import Tachyon
29
30
from colors import Color, hue, rainbow, colors, colormaps
31
32
from step import plot_step_function
33
34
from hyperbolic_arc import hyperbolic_arc
35
from hyperbolic_triangle import hyperbolic_triangle
36
37