1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-01 04:20:27 +02:00

reduce dep

This commit is contained in:
Justin Lin
2020-04-03 07:56:05 +08:00
parent 11afabf252
commit 70cb207455

View File

@@ -1,7 +1,8 @@
use <experimental/lcm.scad>;
use <sweep.scad>;
module loft(sections, slices = 1) {
function lcm(m, n) = m * n / gcd(m, n);
function inter_pts(p1, p2, n) =
let(
v = p2 - p1,