vibe-openscad

iter-png-3/claude-opus-4-0 / tier-1-mug

success tier 1

bare (claude opus 4)

render
bare render of tier-1-mug
loading STL…
success 9.9s · 1369/400t · $0.0505
SCAD (34 lines)
// マグカップのパラメータ
outer_diameter = 80;
outer_radius = outer_diameter / 2;
height = 100;
wall_thickness = 4;
bottom_thickness = 6;
handle_thickness = 8;
handle_outer_radius = 20;
handle_inner_radius = 12;

// マグカップ本体
difference() {
    // 外側の円柱
    cylinder(h = height, r = outer_radius, $fn = 100);
    
    // 内側をくり抜く
    translate([0, 0, bottom_thickness])
        cylinder(h = height - bottom_thickness + 1, r = outer_radius - wall_thickness, $fn = 100);
}

// 取手
translate([outer_radius, 0, height / 2])
    rotate([90, 0, 0])
        difference() {
            // 取手の外側
            cylinder(h = handle_thickness, r = handle_outer_radius, center = true, $fn = 100);
            
            // 取手の内側(指を通す穴)
            cylinder(h = handle_thickness + 1, r = handle_inner_radius, center = true, $fn = 100);
            
            // カップ本体と重なる部分を切り取る
            translate([-handle_outer_radius - outer_radius, 0, 0])
                cube([handle_outer_radius * 2, handle_thickness + 2, handle_outer_radius * 2 + 2], center = true);
        }
パラメータ (7)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIditer-png-3_claude-opus-4-0-3c4166a40b6b-2026-04-27T01-09-50-070Z
matrixIditer-png-3/claude-opus-4-0
signature3c4166a40b6b0043…
provideranthropic
modelclaude-opus-4-20250514
harnessbare
statussuccess
duration9.89s (wallclock: load + prompt eval + generation + network)
tokens1369 in / 400 out
wallclock tok/s40.4 tok/s (end-to-end)
cost$0.0505
createdAt2026-04-27T01:09:50.070Z
gitCommit3bc2a31379af
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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