|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
||||||||||||||||||||||||||||||||||||||||||||||
2022年11月01日(火) 旧暦 [n年日記] [更新:"2004/08/09 23:43:33"]#1 [openscad] lower version Y vertical The previous one is X vertical intended to see the
profile after conversion. But it failed. And besides,
the stripe line runs horizonally (X direction). The stripe width for 20 m/m
lense is 600 um.
So, 90 degrees rotated horizontally for now And this needs inversion (for Positive resist) at Conversion setup Conversion Algorithm ( by guess)
// lower version Y vertical
module slope (L, H, W, D, offset) {
translate([0, -D * 2 , 0])
cube([W, D, H]);
translate([0, D * 2 + L, 0])
cube([W, D, H]);
polyhedron (
points = [
[ 0, 0 + offset, H],
[ W, 0 + offset, H],
[ W, L + offset, H],
[ 0, L + offset, H],
[ 0, L + offset, 0],
[ W, L + offset, 0],
],
faces = [
[ 0, 1, 2, 3],
[ 3, 2, 5, 4],
[ 4, 5, 1, 0],
[ 0, 3, 4],
[ 1, 5, 2]
]
);
}
slope (100, 50, 100, 10, 0);
( Post message... )
2022年11月24日(木) 旧暦 [n年日記] [更新:"2004/08/09 23:43:33"]#1 [DWL66+]
二つの binary と、一つの grayscale を描画しようとしたが、
時間切れ等で binary x 2 のみとなった
( Post message... )
2022年11月29日(火) 旧暦 [n年日記] [更新:"2004/08/09 23:43:33"]#1 [openscad] Y direction, quarter width model![]()
// upper version
// VERSION = 2022-11-01 22:06"
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 , 0],
[ W/2, 0 , 0],
[ W/2, L , H],
[ -W/2, L , H],
[ -W/2, L , 0],
[ W/2, L , 0],
],
faces = [
[ 0, 1, 2, 3],
[ 3, 2, 5, 4],
[ 4, 5, 1, 0],
[ 0, 3, 4],
[ 1, 5, 2]
]
);
}
rotate([0, 180, 0]) // for lower, invert
// Length Height Width Delta
slope (1000, 250, 300, 100); // 1 x 0.3 m/m for default setup
( 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 | |||||||||||||||||||||||||||||||||||||||||||||