diff --git a/src/triangle/tri_circumcenter.scad b/src/triangle/tri_circumcenter.scad index a790461e..4f3a6594 100644 --- a/src/triangle/tri_circumcenter.scad +++ b/src/triangle/tri_circumcenter.scad @@ -21,5 +21,5 @@ function tri_circumcenter(shape_pts) = ) det == 0 ? undef : [ cross([d1, d0], [v1.y, v0.y]), - cross([d0, d1], [v0.x, v1.x]) / det - ]; \ No newline at end of file + cross([d0, d1], [v0.x, v1.x]) + ] / det; \ No newline at end of file