vibe-openscad

iter-png-1/claude-sonnet-4-0 / tier-1-mug

success tier 1

bare (claude sonnet 4)

render
bare render of tier-1-mug
loading STL…
success 9.4s · 1395/682t · $0.0144
SCAD (52 lines)
// マグカップのパラメータ
outer_diameter = 80;
height = 100;
wall_thickness = 4;
bottom_thickness = 6;
handle_radius = 15;
handle_tube_radius = 3;

// 内径を計算
inner_diameter = outer_diameter - 2 * wall_thickness;
inner_height = height - bottom_thickness;

difference() {
    union() {
        // 外側のシリンダー(カップ本体)
        cylinder(h = height, d = outer_diameter, $fn = 100);
        
        // 取手 - トーラス形状で作成
        translate([outer_diameter/2 + handle_radius, 0, height/2]) {
            rotate([90, 0, 0]) {
                rotate_extrude($fn = 60) {
                    translate([handle_radius, 0, 0]) {
                        circle(r = handle_tube_radius, $fn = 20);
                    }
                }
            }
        }
        
        // 取手をカップ本体に接続するための部分
        hull() {
            // カップ側面の接続点
            translate([outer_diameter/2 - 2, 0, height/2 + handle_radius]) {
                sphere(r = handle_tube_radius, $fn = 20);
            }
            translate([outer_diameter/2 - 2, 0, height/2 - handle_radius]) {
                sphere(r = handle_tube_radius, $fn = 20);
            }
            // 取手側の接続点
            translate([outer_diameter/2 + handle_radius + handle_radius, 0, height/2 + handle_radius]) {
                sphere(r = handle_tube_radius, $fn = 20);
            }
            translate([outer_diameter/2 + handle_radius + handle_radius, 0, height/2 - handle_radius]) {
                sphere(r = handle_tube_radius, $fn = 20);
            }
        }
    }
    
    // 内側をくり抜き
    translate([0, 0, bottom_thickness]) {
        cylinder(h = inner_height + 1, d = inner_diameter, $fn = 100);
    }
}
パラメータ (6)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIditer-png-1_claude-sonnet-4-0-5c3e41cb67d5-2026-04-27T01-10-32-005Z
matrixIditer-png-1/claude-sonnet-4-0
signature5c3e41cb67d55772…
provideranthropic
modelclaude-sonnet-4-20250514
harnessbare
statussuccess
duration9.41s (wallclock: load + prompt eval + generation + network)
tokens1395 in / 682 out
wallclock tok/s72.5 tok/s (end-to-end)
cost$0.0144
createdAt2026-04-27T01:10:32.005Z
gitCommit3bc2a31379af
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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