Commit b533574 1 parent 4728ca2 commit b533574 Copy full SHA for b533574
File tree 1 file changed +11
-10
lines changed
src/sage/dynamics/complex_dynamics
1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change 31
31
# http://www.gnu.org/licenses/
32
32
#*****************************************************************************
33
33
34
- from sage .dynamics .complex_dynamics .mandel_julia_helper import (fast_mandelbrot_plot ,
35
- fast_external_ray ,
36
- convert_to_pixels ,
37
- get_line ,
38
- fast_julia_plot ,
39
- general_julia ,
40
- polynomial_mandelbrot ,
41
- julia_helper )
42
-
43
34
from sage .misc .lazy_import import lazy_import
44
35
lazy_import ("sage.plot.colors" , "Color" )
45
- from sage .repl .image import Image
36
+ lazy_import ( " sage.repl.image" , " Image" )
46
37
from sage .functions .log import logb
47
38
from sage .functions .other import floor
48
39
from sage .rings .rational_field import QQ
56
47
from sage .categories .function_fields import FunctionFields
57
48
58
49
lazy_import ('sage.dynamics.arithmetic_dynamics.generic_ds' , 'DynamicalSystem' )
50
+ lazy_import ('sage.dynamics.complex_dynamics.mandel_julia_helper' , (
51
+ 'fast_mandelbrot_plot' ,
52
+ 'fast_external_ray' ,
53
+ 'convert_to_pixels' ,
54
+ 'get_line' ,
55
+ 'fast_julia_plot' ,
56
+ 'general_julia' ,
57
+ 'polynomial_mandelbrot' ,
58
+ 'julia_helper'
59
+ ))
59
60
60
61
EPS = 0.00001
61
62
You can’t perform that action at this time.
0 commit comments