vibe-openscad

bare/claude-fable-5 / tier-1-mug

success tier 1

bare (claude fable 5)

render
bare render of tier-1-mug
loading STL…
success 23.6s · 220/1698t · $0.0871
SCAD (34 lines)
// マグカップ
$fn = 100;

// パラメータ
outer_d       = 80;   // 外径
cup_h         = 100;  // 高さ
wall_t        = 4;    // 側面の肉厚
bottom_t      = 6;    // 底面の厚み
handle_r      = 12;   // 取手リングの半径(中心円の半径)
handle_tube_r = 5;    // 取手の太さ(断面半径)

// 取手(トーラス)
module handle() {
    // カップ外壁に少し食い込ませて接合し、外側へ大きく張り出す
    translate([outer_d/2 + 8, 0, cup_h/2])
        rotate([90, 0, 0])
            rotate_extrude(angle = 360)
                translate([handle_r, 0, 0])
                    circle(r = handle_tube_r);
}

// マグカップ本体
difference() {
    union() {
        // カップ外形
        cylinder(h = cup_h, d = outer_d);
        // 取手
        handle();
    }
    // 内側をくり抜く(底面厚 6mm を残す)
    // 取手がカップ内部にはみ出した部分もここで除去される
    translate([0, 0, bottom_t])
        cylinder(h = cup_h, d = outer_d - 2 * wall_t);
}
パラメータ (6)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIdbare_claude-fable-5-e18d7ee54a9e-2026-06-09T18-25-59-631Z
matrixIdbare/claude-fable-5
signaturee18d7ee54a9e446e…
provideranthropic
modelclaude-fable-5
harnessbare
statussuccess
duration23.62s (wallclock: load + prompt eval + generation + network)
tokens220 in / 1698 out
wallclock tok/s71.9 tok/s (end-to-end)
cost$0.0871
createdAt2026-06-09T18:25:59.631Z
gitCommit2b674f55c19d
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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