File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -147,16 +147,16 @@ def f(x,y): return math.exp(x/5)*math.cos(y)
147147# https://www.gnu.org/licenses/
148148# ****************************************************************************
149149
150- from .tri_plot import TrianglePlot
151- from .index_face_set import IndexFaceSet
152- from .shapes import arrow3d
153- from .base import Graphics3dGroup
150+ from sage .misc .lazy_import import lazy_import
151+ from sage .misc .sageinspect import sage_getargspec , is_function_or_cython_function
154152from sage .plot .colors import rainbow
155- from .texture import Texture
153+ from sage .plot .plot3d .base import Graphics3dGroup
154+ from sage .plot .plot3d .index_face_set import IndexFaceSet
155+ from sage .plot .plot3d .shapes import arrow3d
156+ from sage .plot .plot3d .texture import Texture
157+ from sage .plot .plot3d .tri_plot import TrianglePlot
156158
157- from sage .misc .lazy_import import lazy_import
158159lazy_import ("sage.functions.trig" , ["cos" , "sin" ])
159- from sage .misc .sageinspect import sage_getargspec , is_function_or_cython_function
160160
161161
162162class _Coordinates :
You can’t perform that action at this time.
0 commit comments