|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
|||||||||||||||||||||||||||||||||||||||||||||||
2024年02月08日(木) 旧暦 [n年日記] [更新:"2024/02/08 04:41:37"]#1 [openscad] upper version non - invert, negative resist
upper-nega-resist.stl
// upper version non - invert, negative resist
module slope (L, H, W, D) {
translate([ -W/2, -D * 2, 0]) cube([ W, D, H]);
translate([ -W/2, D + L, 0]) cube([ W, D, H]);
polyhedron(
points = [
[ -W/2, 0 , H],
[ W/2, 0 , H],
[ W/2, L , 0],
[ -W/2, L , 0],
[ -W/2, L , H],
[ W/2, L , H],
],
faces = [
[ 0, 1, 2, 3],
[ 3, 2, 5, 4],
[ 4, 5, 1, 0],
[ 0, 3, 4],
[ 1, 5, 2]
]
);
}
module slopex2(L, H, W, D, GAP) {
// x y z
translate([ W/2 + GAP, - L/2, 50 ]) rotate([0, 180, 0]) slope (L, H, W, D);
translate([ -W/2 - GAP, L/2, 50 ]) rotate([0, 180, 180]) slope (L, H, W, D);
}
// Length, Height, Width, shift, gap
slopex2 (300, 50, 100, 50, 10);%
( Post message... )
|
最近の日記 2024年11月14日 ・DWL66+ 2018 405 nm 2024年02月19日 ・another (large, 0.55 x 1.0 m/m) version for contrast curve 2024年02月15日 ・curved star cone 2024年02月13日 ・paraboloid with base plane 2024年02月09日 ・bit map format for contrast curve | ||