Revert "Update torus.lua"

This reverts commit 35eeb918d0.
This commit is contained in:
VorTechnix 2021-05-17 18:47:34 -07:00
parent d9069b3cfa
commit d7f328c65b
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
--- Overlap command. Places a specified node on top of
--- Overlap command. Places a specified node on top of
-- @module worldeditadditions.overlay
--- Generates a torus shape at the given position with the given parameters.
@ -56,7 +56,7 @@ function worldeditadditions.torus(position, major_radius, minor_radius, target_n
-- Where:
-- (x, y, z) is the point
-- a is the major radius (centre to centre of circle)
-- b is the minor radius (radius of circle)
-- b is the minor radius (radius of circle
local comp_a = (x_sq+y_sq+z_sq - (major_radius_sq+minor_radius_sq))
local test_value = comp_a*comp_a - 4*major_radius*minor_radius*(minor_radius_sq-z_sq)