mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-21 14:04:53 +02:00
refactored
This commit is contained in:
6
src/__private__/__length_between.scad
Normal file
6
src/__private__/__length_between.scad
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
function __length_between(p1, p2) =
|
||||||
|
let(
|
||||||
|
dx = p2[0] - p1[0],
|
||||||
|
dy = p2[1] - p1[1],
|
||||||
|
dz = p2[2] - p1[2]
|
||||||
|
) sqrt(pow(dx, 2) + pow(dy, 2) + pow(dz, 2));
|
@@ -16,6 +16,7 @@
|
|||||||
include <__private__/__is_vector.scad>;
|
include <__private__/__is_vector.scad>;
|
||||||
include <__private__/__to3d.scad>;
|
include <__private__/__to3d.scad>;
|
||||||
include <__private__/__angy_angz.scad>;
|
include <__private__/__angy_angz.scad>;
|
||||||
|
include <__private__/__length_between.scad>;
|
||||||
|
|
||||||
module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale = 1.0, closed = false) {
|
module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale = 1.0, closed = false) {
|
||||||
sh_pts = len(shape_pts[0]) == 3 ? shape_pts : [for(p = shape_pts) __to3d(p)];
|
sh_pts = len(shape_pts[0]) == 3 ? shape_pts : [for(p = shape_pts) __to3d(p)];
|
||||||
@@ -47,10 +48,7 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale =
|
|||||||
|
|
||||||
function section(p1, p2, i) =
|
function section(p1, p2, i) =
|
||||||
let(
|
let(
|
||||||
dx = p2[0] - p1[0],
|
length = __length_between(p1, p2),
|
||||||
dy = p2[1] - p1[1],
|
|
||||||
dz = p2[2] - p1[2],
|
|
||||||
length = sqrt(pow(dx, 2) + pow(dy, 2) + pow(dz, 2)),
|
|
||||||
angy_angz = __angy_angz(p1, p2),
|
angy_angz = __angy_angz(p1, p2),
|
||||||
ay = - angy_angz[0],
|
ay = - angy_angz[0],
|
||||||
az = angy_angz[1]
|
az = angy_angz[1]
|
||||||
|
Reference in New Issue
Block a user