Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

06 #4

Open
wants to merge 2 commits into
base: projects
Choose a base branch
from
Open

06 #4

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion versions/04/fractal/mandelbrot.py → fractal/mandelbrot.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
def mandelbrot(z0:complex, orbits:int=255) -> int:
"""Find the escape orbit of points under Mandelbrot iteration

# Just added a comment to make any change
>>> mandelbrot(0.0965-0.638j)
17

Expand All @@ -26,4 +27,4 @@ def mandelbrot(z0:complex, orbits:int=255) -> int:
if abs(z) > 2.0:
return n
z = z * z + z0
return orbits
return orbits
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 0 additions & 22 deletions versions/01/Mandelbrot.md

This file was deleted.

9 changes: 0 additions & 9 deletions versions/01/mandelbrot-1.py

This file was deleted.

19 changes: 0 additions & 19 deletions versions/01/mandelbrot-2.py

This file was deleted.

25 changes: 0 additions & 25 deletions versions/01/mandelbrot-3.py

This file was deleted.

27 changes: 0 additions & 27 deletions versions/01/visualize.py

This file was deleted.

28 changes: 0 additions & 28 deletions versions/02/fractal/mandelbrot.py

This file was deleted.

42 changes: 0 additions & 42 deletions versions/02/fractal/sierpiński.py

This file was deleted.

33 changes: 0 additions & 33 deletions versions/02/fractal/visualize.py

This file was deleted.

25 changes: 0 additions & 25 deletions versions/02/test/test_canvas_A.py

This file was deleted.

43 changes: 0 additions & 43 deletions versions/02/test/test_canvas_B.py

This file was deleted.

56 changes: 0 additions & 56 deletions versions/02/test/test_canvas_C.py

This file was deleted.

Empty file removed versions/02/test/test_points.py
Empty file.
Empty file removed versions/03/fractal/__init__.py
Empty file.
12 changes: 0 additions & 12 deletions versions/03/fractal/julia.py

This file was deleted.

Loading