-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviewer.py
182 lines (146 loc) · 5.28 KB
/
viewer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
"""
Alex Eidt
This script creates a viewer for escape time fractals using a TKinter GUI.
"""
import imageio
import numpy as np
import tkinter as tk
from PIL import Image, ImageTk
from fractals import mandelbrot, julia
WIDTH, HEIGHT = 640, 360
MIN_ITERATIONS = 100
MAX_ITERATIONS = 1024
SNAPSHOT_TYPE = "png"
class FractalViewer:
def __init__(self, width, height):
self.width = width
self.height = height
self.iterations = MIN_ITERATIONS
self.draw = False
self.smooth = True
self.fractal_func = mandelbrot
self.image = np.empty((height, width, 3), dtype=np.uint8)
self.snapshot_count = 0
self.scale = np.array([width / 2, height], dtype=np.float64)
zero = np.array([0, 0], dtype=np.float64)
self.offset = zero.copy()
self.mouse = zero.copy()
self.pressed = zero.copy()
# Top left and Bottom right points of the fractal space.
self.frac_tl = zero.copy()
self.frac_br = zero.copy()
# Top left and Bottom right points of the fractal on screen.
self.pix_tl = zero.copy()
self.pix_br = np.array([width, height], dtype=np.float64)
# Julia Set initial complex point.
self.julia_point = np.array([-0.70176, -0.3842], dtype=np.float64)
self.mouse_before_zoom = zero.copy()
self.mouse_after_zoom = zero.copy()
self.alpha = 0.16
# Color Palette in the form of a list of RGB tuples.
self.palette = np.array(
[
(0.5 * np.cos(np.arange(MAX_ITERATIONS) * self.alpha) + 0.5) * 255, # R
(0.5 * np.sin(np.arange(MAX_ITERATIONS) * self.alpha + 0.987) + 0.5)
* 255, # G
(0.5 * np.cos(np.arange(MAX_ITERATIONS) * self.alpha + 4.188) + 0.5)
* 255, # B
],
dtype=np.uint8,
).transpose(1, 0)
self.fractal_func(
self.image,
self.palette,
self.iterations,
self.frac_tl[0],
self.frac_tl[1],
self.frac_br[0],
self.frac_br[1],
self.smooth,
self.julia_point[0],
self.julia_point[1],
)
root = tk.Tk()
root.title("Fractals")
frame_image = ImageTk.PhotoImage(Image.fromarray(self.image))
self.label = tk.Label(root, image=frame_image)
self.label.pack()
root.bind("<KeyPress>", self.update_keypress)
root.bind("<MouseWheel>", self.update_mousewheel)
root.bind("<Motion>", self.motion)
root.bind("<ButtonPress 1>", self.set_pressed)
root.bind("<ButtonRelease 1>", self.set_pressed)
self.update_screen()
root.resizable(False, False)
root.mainloop()
def update_keypress(self, event):
shift = event.char.isupper()
key = event.char.lower()
if key == "m":
self.fractal_func = mandelbrot
elif key == "j":
self.fractal_func = julia
if key == "s":
self.smooth = not self.smooth
if key == "i":
# If holding shift, increase iterations.
self.iterations += -4 if shift else 4
self.iterations = max(min(self.iterations, MAX_ITERATIONS), MIN_ITERATIONS)
if key == "k":
self.julia_point[0] += -0.01 if shift else 0.01
if key == "l":
self.julia_point[1] += -0.01 if shift else 0.01
if key == "c":
imageio.imwrite(
f"fractal-{self.snapshot_count}.{SNAPSHOT_TYPE}", self.image
)
self.snapshot_count += 1
if key in "mjsikl":
self.update_screen()
def update_mousewheel(self, event):
self.screen_to_world(self.pix_br - self.mouse, self.mouse_before_zoom)
if event.delta < 0:
self.scale *= 1.1
else:
self.scale /= 1.1
self.screen_to_world(self.pix_br - self.mouse, self.mouse_after_zoom)
self.offset += self.mouse_before_zoom - self.mouse_after_zoom
self.update_screen()
def update_screen(self):
self.screen_to_world(self.pix_tl, self.frac_tl)
self.screen_to_world(self.pix_br, self.frac_br)
self.fractal_func(
self.image,
self.palette,
self.iterations,
self.frac_tl[0],
self.frac_tl[1],
self.frac_br[0],
self.frac_br[1],
self.smooth,
self.julia_point[0],
self.julia_point[1],
)
frame_image = ImageTk.PhotoImage(Image.fromarray(self.image))
self.label.configure(image=frame_image)
self.label.image = frame_image
self.label.pack()
def motion(self, event):
x, y = event.x, event.y
self.mouse[:] = x, y
if not self.draw:
return
self.offset -= (self.pressed - self.mouse) / self.scale
self.pressed[:] = x, y
self.update_screen()
def world_to_screen(self, v, n):
n[:] = (v - self.offset) * self.scale
def screen_to_world(self, n, v):
v[:] = n / self.scale + self.offset
def set_pressed(self, event):
self.pressed[:] = event.x, event.y
self.draw = not self.draw
def main():
FractalViewer(WIDTH, HEIGHT)
if __name__ == "__main__":
main()