1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-03-23 07:29:49 +01:00

remove rr

This commit is contained in:
Justin Lin 2021-04-25 17:46:55 +08:00
parent 332ea57577
commit 056a09920c

View File

@ -15,7 +15,6 @@ function tri_circumcircle(shape_pts) =
y = (d0 * v1[0] - d1 * v0[0]) / det,
center = [x, y],
v = p0 - center,
r = norm(v),
rr = v[0] ^ 2 + v[1] ^ 2
r = norm(v)
)
[center, r, rr];
[center, r];