vibe-openscad

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

success tier 1

bare (claude opus 4.1)

render
bare render of tier-1-mug
loading STL…
success 6.3s · 210/257t · $0.0224
SCAD (28 lines)
$fn = 100;

// マグカップ本体
difference() {
    // 外側の円柱
    cylinder(h = 100, r = 40, center = false);
    
    // 内側をくり抜く
    translate([0, 0, 6])
        cylinder(h = 100, r = 36, center = false);
}

// 取手
translate([40, 0, 50]) {
    rotate([90, 0, 0]) {
        difference() {
            // 取手の外側リング
            cylinder(h = 12, r = 35, center = true);
            
            // 取手の内側をくり抜く
            cylinder(h = 13, r = 23, center = true);
            
            // カップ本体との接続部分をカット
            translate([-40, 0, 0])
                cube([40, 80, 14], center = true);
        }
    }
}

meta

runIdbare_claude-opus-4-1-7594dbbf66d0-2026-04-26T18-27-00-885Z
matrixIdbare/claude-opus-4-1
signature7594dbbf66d0ecd8…
provideranthropic
modelclaude-opus-4-1-20250805
harnessbare
statussuccess
duration6.27s (wallclock: load + prompt eval + generation + network)
tokens210 in / 257 out
wallclock tok/s41.0 tok/s (end-to-end)
cost$0.0224
createdAt2026-04-26T18:27:00.885Z
openscadOpenSCAD version 2026.04.27

iteration chain

各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。

prompt

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

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