|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
|||||||||||||||||||||||||||||||||||||||||||||||||||
2022年10月12日(水) 旧暦 [n年日記] [更新:"2004/08/09 23:43:33"]#1 [openscad] resolved
10/10 に書いた問題
について、
@tristelo
さんに教えてもらった。
線で接していると、問題が起きるらしいので、少しだけ
くいこませたような形になっている。でも目で確認出来るような
「少し」ではない
cube も使って、簡潔に書いてある module slope (L, H, W, D) { bind = 0.000001; translate([-W, -D, 0]) cube([W, D, H]); polyhedron( points = [[ 0, 0 - bind, 0], [ -W, 0 - bind, 0], [ -W, L, H], [ 0, L, H], [ 0, L, 0], [ -W, L, 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); ( つっこみ )
2022年10月10日(月) 旧暦 [n年日記] [更新:"2004/08/09 23:43:33"]#1 [openscad] translate を初めて使って見たmodule slope (L, H, W, D) { polyhedron( points = [ [ 0, -D, 0], [ 0, -D, H], [ -W, -D, H], [ -W, -D, 0], [ 0, 0, 0], [ -W, 0, 0], [ -W, 0, H], [ -0, 0, H], [ -W, L, H], [ 0, L, H], [ 0, L, 0], [ -W, L, 0], ], faces = [ [ 3, 2, 1, 0], [ 7, 6, 5, 4], [ 1, 7, 4, 0], [ 3, 5, 6, 2], [ 0, 4, 5, 3], [ 6, 7, 1, 2], [ 5, 8, 9, 4], [ 10, 11, 5, 4], [ 9, 10, 4], [ 11, 8, 5], [8, 11, 10, 9], ]); } slope (100, 50, 100, 10); translate ([0, 200, 0]) slope (100, 5, 100, 10); translate は、 その後に書いてある部分を移動してくれる
square を使うと、四角の形を作ってくれるが厚さの点が良く分っていないので、まだ使っていない
WARNING: No top level geometry to render になってしまう ( つっこみ )
|
最近の日記 2024年07月03日 ・kicad oddity 2024年05月08日 ・comparison on ./buildsh tools 2024年05月06日 ・py-setuptools (python 3.11.9) ・make release took 1 hours and 10 min ・qemu invocation for 10.99.10 2024年05月05日 ・Windows 10 version ・serial connection ・bc bench 2024年05月04日 ・Trial on 10.99.10 ・another version (later trial) to succeed | ||