mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-17 20:11:50 +02:00
rename
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
function tri_circumcircle(points) =
|
function tri_circumcircle(shape_pts) =
|
||||||
let(
|
let(
|
||||||
p0 = points[0],
|
p0 = shape_pts[0],
|
||||||
p1 = points[1],
|
p1 = shape_pts[1],
|
||||||
p2 = points[2],
|
p2 = shape_pts[2],
|
||||||
v0 = p1 - p0,
|
v0 = p1 - p0,
|
||||||
d0 = (p1 + p0) / 2 * v0,
|
d0 = (p1 + p0) / 2 * v0,
|
||||||
v1 = p2 - p1,
|
v1 = p2 - p1,
|
||||||
|
Reference in New Issue
Block a user