1
0
mirror of https://github.com/HybridDog/vector_extras.git synced 2024-09-27 14:50:36 +02:00

Fix a bug in deprecated vector.plane

This commit is contained in:
Desour 2020-08-25 00:19:50 +02:00
parent 9116fe4e45
commit 8c0ffcc4a7

View File

@ -273,7 +273,7 @@ end
--local areas = {} --local areas = {}
function funcs.plane(ps) function funcs.plane(ps)
-- sort positions and imagine the first one (A) as vector.zero -- sort positions and imagine the first one (A) as vector.zero
ps = vector.sort_positions(ps) vector.sort_positions(ps)
local pos = ps[1] local pos = ps[1]
local B = vector.subtract(ps[2], pos) local B = vector.subtract(ps[2], pos)
local C = vector.subtract(ps[3], pos) local C = vector.subtract(ps[3], pos)