mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-25 13:59:04 +02:00
66 lines
2.3 KiB
OpenSCAD
66 lines
2.3 KiB
OpenSCAD
use <../ptf/ptf_rotate.scad>;
|
|
use <../shape_pie.scad>;
|
|
use <../bezier_curve.scad>;
|
|
|
|
function _glued2circles_pie_curve(radius, centre_dist, tangent_angle) =
|
|
let(
|
|
begin_ang = 90 + tangent_angle,
|
|
shape_pts = shape_pie(radius, [-begin_ang, begin_ang]),
|
|
leng = len(shape_pts)
|
|
)
|
|
[
|
|
for(i = 1; i < leng; i = i + 1)
|
|
shape_pts[i] + [centre_dist / 2, 0]
|
|
];
|
|
|
|
function _glued2circles_bezier(radius, centre_dist, tangent_angle, t_step, ctrl_p1) =
|
|
let(
|
|
ctrl_p = ptf_rotate([radius * tan(tangent_angle), -radius], tangent_angle),
|
|
ctrl_p2 = [-ctrl_p[0], ctrl_p[1]] + [centre_dist / 2, 0],
|
|
ctrl_p3 = [-ctrl_p2[0], ctrl_p2[1]],
|
|
ctrl_p4 = [-ctrl_p1[0], ctrl_p1[1]]
|
|
)
|
|
bezier_curve(
|
|
t_step,
|
|
[
|
|
ctrl_p1,
|
|
ctrl_p2,
|
|
ctrl_p3,
|
|
ctrl_p4
|
|
]
|
|
);
|
|
|
|
function _glued2circles_lower_half_curve(curve_pts, leng) =
|
|
[
|
|
for(i = 0; i < leng; i = i + 1)
|
|
let(p = curve_pts[leng - 1 - i])
|
|
if(p[0] >= 0) p
|
|
];
|
|
|
|
function _glued2circles_half_glued_circle(radius, centre_dist, tangent_angle, t_step) =
|
|
let(
|
|
pie_curve_pts = _glued2circles_pie_curve(radius, centre_dist, tangent_angle),
|
|
curve_pts = _glued2circles_bezier(radius, centre_dist, tangent_angle, t_step, pie_curve_pts[0]),
|
|
lower_curve_pts = _glued2circles_lower_half_curve(curve_pts, len(curve_pts)),
|
|
leng_half_curve_pts = len(lower_curve_pts),
|
|
upper_curve_pts = [
|
|
for(i = 0; i < leng_half_curve_pts; i = i + 1)
|
|
let(pt = lower_curve_pts[leng_half_curve_pts - 1 - i])
|
|
[pt[0], -pt[1]]
|
|
]
|
|
) concat(
|
|
lower_curve_pts,
|
|
pie_curve_pts,
|
|
upper_curve_pts
|
|
);
|
|
|
|
function _shape_glued2circles_impl(radius, centre_dist, tangent_angle, t_step) =
|
|
let(
|
|
half_glued_circles = _glued2circles_half_glued_circle(radius, centre_dist, tangent_angle, t_step),
|
|
leng_half_glued_circles = len(half_glued_circles),
|
|
left_half_glued_circles = [
|
|
for(i = 0; i < leng_half_glued_circles; i = i + 1)
|
|
let(pt = half_glued_circles[leng_half_glued_circles - 1 - i])
|
|
[-pt[0], pt[1]]
|
|
]
|
|
) concat(half_glued_circles, left_half_glued_circles); |