vibe-openscad

bare-low/claude-opus-4-7 / tier-1-mug

success tier 1

bare (claude opus 4.7)

render
bare render of tier-1-mug
loading STL…
success 7.2s · 225/283t · $0.0082
SCAD (29 lines)
$fn = 100;

outer_d = 80;
height  = 100;
wall    = 4;
bottom  = 6;
handle_r = 12;       // リング取手の中心半径
handle_tube = 6;     // 取手の太さ(チューブ半径)

module mug() {
    difference() {
        cylinder(d = outer_d, h = height);
        translate([0, 0, bottom])
            cylinder(d = outer_d - 2*wall, h = height);
    }
}

module handle() {
    translate([outer_d/2 + handle_r - handle_tube/2, 0, height/2])
        rotate([90, 0, 0])
            rotate_extrude()
                translate([handle_r, 0, 0])
                    circle(r = handle_tube);
}

union() {
    mug();
    handle();
}
パラメータ (6)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIdbare-low_claude-opus-4-7-663bdbdcad7c-2026-04-27T20-37-47-394Z
matrixIdbare-low/claude-opus-4-7
signature663bdbdcad7cf52e…
provideranthropic
modelclaude-opus-4-7
harnessbare
statussuccess
duration7.20s (wallclock: load + prompt eval + generation + network)
tokens225 in / 283 out
wallclock tok/s39.3 tok/s (end-to-end)
cost$0.0082
createdAt2026-04-27T20:37:47.394Z
gitCommit8910365a8146
openscadOpenSCAD version 2026.04.27

prompt

OpenSCAD で、外径 80mm、高さ 100mm、肉厚 4mm のマグカップを作ってください。
底面の厚みは 6mm とし、内側はくり抜いて飲み物を入れられる形状にしてください。
さらに、側面には外径方向に飛び出す半径 12mm の取手(リング状の取手)を付けてください。
取手はカップの中心高さあたりに付け、外周から十分にはみ出して指を通せる形にしてください。

完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。