1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/shape/spiral.lua
2018-08-21 13:11:06 +01:00

17 lines
396 B
Lua

local thickness = 72 -- change this to change the spiral thickness.
local inv_pi = 1 / math.pi
local thickness2 = thickness * 2
return function(x, y)
local d = math.sqrt(x * x + y * y)
if d < 128 then
return true
end
local angle = 1 + inv_pi * math.atan2(x, y)
local offset = d + (angle * thickness)
return offset % thickness2 >= thickness
end