-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfractal.lua
70 lines (60 loc) · 1.52 KB
/
fractal.lua
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
local fenster = require('fenster')
---Map a value from one range to another
---@param value number
---@param start1 number
---@param stop1 number
---@param start2 number
---@param stop2 number
---@return number
---@nodiscard
local function map(value, start1, stop1, start2, stop2)
return start2 + (stop2 - start2) * ((value - start1) / (stop1 - start1))
end
-- Open a window
local window_width = 144
local window_height = 144
local window_scale = 4
local window = fenster.open(
window_width,
window_height,
'Fractal Demo - Press ESC to exit',
window_scale
)
-- Fractal settings
local fractal_depth = 64
local generation_infinity = 16
-- Get range of the fractal
local range = 2
local x_min = 0 - range
local x_max = 0 + range
local y_min = 0 - range
local y_max = 0 + range
-- Display the fractal
local angle = 0
while window:loop() and not window.keys[27] do
-- Draw the fractal
for y = 0, window_height - 1 do
for x = 0, window_width - 1 do
local real = map(x, 0, window_width, x_min, x_max)
local imag = map(y, 0, window_height, y_min, y_max)
local depth = 0
while depth < fractal_depth do
local re = real * real - imag * imag
local im = 2 * real * imag
real = re + math.cos(angle)
imag = im + math.sin(angle)
if math.abs(real + imag) > generation_infinity then
break
end
depth = depth + 1
end
local color = 0x000000
if depth < fractal_depth then
color = depth * 32 % 256
end
window:set(x, y, color)
end
end
-- Rotate the fractal
angle = angle + 2 * window.delta
end