Formatting & performance improvements

This commit is contained in:
Starbeamrainbowlabs 2018-06-09 19:35:32 +01:00
parent aadee6a5ae
commit 729424e97c
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 4 deletions

View File

@ -29,12 +29,12 @@ function worldedit.ellipsoid(position, radius, target_node)
for x = -radius.x, radius.x do
-- If we're inside the ellipse, then fill it in
if (x/radius.x)*(x/radius.x) + (y/radius.y)*(y/radius.y) + (z/radius.z)*(z/radius.z) <= 1 then
local x_comp, y_comp, z_comp = x/radius.x, y/radius.y, z/radius.z
if x_comp*x_comp + y_comp*y_comp + z_comp*z_comp <= 1 then
data[i] = node_id
count = count + 1
end