1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 09:14:29 +02:00
This commit is contained in:
Justin Lin
2020-05-18 17:22:31 +08:00
parent ba7a4978b5
commit 36d043b26c
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ to_do:
2.4 preview:
- intersection_p
- lines_intersection2
- util/sum
- util/zip
- matrix/m_determinant

View File

@@ -1,7 +1,7 @@
use <__comm__/__line_intersection.scad>;
use <__comm__/__in_line.scad>;
function intersection_p(line_pts1, line_pts2, ext = false, epsilon = 0.0001) =
function lines_intersection2(line_pts1, line_pts2, ext = false, epsilon = 0.0001) =
let(
pt = __line_intersection(line_pts1, line_pts2, epsilon)
)