1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/src/along_with.scad

151 lines
4.7 KiB
OpenSCAD
Raw Normal View History

2017-04-23 11:16:34 +08:00
/**
* along_with.scad
*
* @copyright Justin Lin, 2017
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib-along_with.html
*
**/
2019-05-07 17:35:32 +08:00
include <__private__/__angy_angz.scad>;
2019-05-15 19:35:42 +08:00
include <__private__/__is_float.scad>;
2017-06-17 17:50:11 +08:00
include <__private__/__to3d.scad>;
2019-05-04 10:04:50 +08:00
// Becuase of improving the performance, this module requires m_rotation.scad which doesn't require in dotSCAD 1.0.
// For backward compatibility, I directly include m_rotation here.
include <m_rotation.scad>;
2017-05-19 13:42:34 +08:00
module along_with(points, angles, twist = 0, scale = 1.0) {
2017-05-19 11:24:43 +08:00
leng_points = len(points);
2017-05-19 13:42:34 +08:00
leng_points_minus_one = leng_points - 1;
2017-05-19 13:19:03 +08:00
twist_step_a = twist / leng_points;
2019-05-31 09:55:02 +08:00
angles_defined = angles != undef;
2017-05-19 13:42:34 +08:00
2019-05-15 19:35:42 +08:00
scale_step_vt = __is_float(scale) ?
scale_step() :
2017-05-19 13:42:34 +08:00
[
(scale[0] - 1) / leng_points_minus_one,
(scale[1] - 1) / leng_points_minus_one,
scale[2] == undef ? 0 : (scale[2] - 1) / leng_points_minus_one
2019-05-15 19:35:42 +08:00
];
2019-05-04 10:04:50 +08:00
2019-05-31 09:55:02 +08:00
function scale_step() =
let(s = (scale - 1) / leng_points_minus_one)
[s, s, s];
2019-05-04 10:04:50 +08:00
// get rotation matrice for sections
2019-05-13 09:50:53 +08:00
identity_matrix = [
[1, 0, 0, 0],
[0, 1, 0, 0],
[0, 0, 1, 0],
[0, 0, 0, 1]
];
2019-05-04 10:04:50 +08:00
function local_ang_vects(j) =
j == 0 ? [] : local_ang_vects_sub(j);
2017-06-17 18:08:06 +08:00
2019-05-04 10:04:50 +08:00
function local_ang_vects_sub(j) =
let(
vt0 = points[j] - points[j - 1],
vt1 = points[j + 1] - points[j],
a = acos((vt0 * vt1) / (norm(vt0) * norm(vt1))),
v = cross(vt0, vt1)
)
concat([[a, v]], local_ang_vects(j - 1));
function cumulated_rot_matrice(i, rot_matrice) =
let(
leng_rot_matrice = len(rot_matrice),
leng_rot_matrice_minus_one = leng_rot_matrice - 1,
leng_rot_matrice_minus_two = leng_rot_matrice - 2
)
2019-05-13 09:50:53 +08:00
leng_rot_matrice == 0 ? [identity_matrix] : (
leng_rot_matrice == 1 ? [rot_matrice[0], identity_matrix] : (
i == leng_rot_matrice_minus_two ?
2019-05-04 10:04:50 +08:00
[
rot_matrice[leng_rot_matrice_minus_one],
2019-05-07 17:35:32 +08:00
rot_matrice[leng_rot_matrice_minus_two] * rot_matrice[leng_rot_matrice_minus_one]
2019-05-04 10:04:50 +08:00
]
2019-05-13 09:50:53 +08:00
: cumulated_rot_matrice_sub(i, rot_matrice)
)
);
2019-05-04 10:04:50 +08:00
function cumulated_rot_matrice_sub(i, rot_matrice) =
let(
matrice = cumulated_rot_matrice(i + 1, rot_matrice),
curr_matrix = rot_matrice[i],
prev_matrix = matrice[len(matrice) - 1]
)
2019-05-07 17:35:32 +08:00
concat(matrice, [curr_matrix * prev_matrix]);
2019-05-04 10:04:50 +08:00
// align modules
2019-04-29 10:49:27 +08:00
module align_with_pts_angles(i) {
translate(points[i])
2019-04-29 10:49:27 +08:00
rotate(angles[i])
rotate(twist_step_a * i)
scale([1, 1, 1] + scale_step_vt * i)
children(0);
2017-05-19 13:42:34 +08:00
}
2017-05-03 16:21:49 +08:00
2019-04-29 10:49:27 +08:00
module align_with_pts_init(a, s) {
angleyz = __angy_angz(points[0], points[1]);
rotate([0, -angleyz[0], angleyz[1]])
rotate([90, 0, -90])
rotate(a)
scale(s)
children(0);
}
2019-05-04 10:04:50 +08:00
module align_with_pts_local_rotate(j, init_a, init_s, cumu_rot_matrice) {
2019-04-29 10:49:27 +08:00
if(j == 0) { // first child
align_with_pts_init(init_a, init_s)
children(0);
}
else {
2019-05-04 10:04:50 +08:00
multmatrix(cumu_rot_matrice[j - 1])
align_with_pts_init(init_a, init_s)
2019-04-29 10:49:27 +08:00
children(0);
2017-04-23 11:16:34 +08:00
}
2019-05-04 10:48:38 +08:00
}
2019-04-29 10:49:27 +08:00
2019-05-31 09:55:02 +08:00
if(angles_defined) {
2019-04-29 10:49:27 +08:00
if($children == 1) {
for(i = [0:leng_points_minus_one]) {
align_with_pts_angles(i) children(0);
}
} else {
for(i = [0:min(leng_points, $children) - 1]) {
align_with_pts_angles(i) children(i);
}
2017-04-23 11:16:34 +08:00
}
}
2019-04-29 10:49:27 +08:00
else {
2019-05-04 10:04:50 +08:00
cumu_rot_matrice = cumulated_rot_matrice(0, [
for(ang_vect = local_ang_vects(leng_points - 2))
m_rotation(ang_vect[0], ang_vect[1])
]);
2019-04-29 10:49:27 +08:00
translate(points[0])
2019-05-04 10:04:50 +08:00
align_with_pts_local_rotate(0, 0, [1, 1, 1], cumu_rot_matrice)
2019-04-29 10:49:27 +08:00
children(0);
2017-06-17 17:46:55 +08:00
2019-04-29 10:49:27 +08:00
if($children == 1) {
for(i = [0:leng_points - 2]) {
translate(points[i + 1])
2019-05-04 10:48:38 +08:00
align_with_pts_local_rotate(i, i * twist_step_a, [1, 1, 1] + scale_step_vt * i, cumu_rot_matrice)
2019-04-29 10:49:27 +08:00
children(0);
}
} else {
for(i = [0:min(leng_points, $children) - 2]) {
translate(points[i + 1])
2019-05-04 10:48:38 +08:00
align_with_pts_local_rotate(i, i * twist_step_a, [1, 1, 1] + scale_step_vt * i, cumu_rot_matrice)
2019-04-29 10:49:27 +08:00
children(i + 1);
}
}
}
2017-04-23 11:16:34 +08:00
}