vibe-openscad

iter-png-3/o4-mini / tier-1-mug

success tier 1

bare (o4 mini)

render
bare render of tier-1-mug
loading STL…
success 14.1s · 1324/1383t · $0.0075
SCAD (26 lines)
$fn = 100;

// マグカップ本体
module mug() {
    difference() {
        // 外形
        cylinder(d = 80, h = 100);
        // 内部をくり抜き(底面厚み 6mm、壁厚 4mm)
        translate([0, 0, 6])
            cylinder(d = 80 - 2 * 4, h = 100 - 6);
    }
}

// リング状取手(外周から半径 12mm 飛び出し、断面半径 12mm)
module handle() {
    translate([0, 0, 50])       // カップ中心高さに配置
        rotate_extrude()
            translate([80/2 + 12, 0, 0])  // 外径40 + 飛び出し12 = 52
                circle(r = 12);
}

// 結合
union() {
    mug();
    handle();
}

meta

runIditer-png-3_o4-mini-c4f337521f82-2026-04-27T17-29-29-340Z
matrixIditer-png-3/o4-mini
signaturec4f337521f82e0c9…
provideropenai
modelo4-mini-2025-04-16
harnessbare
statussuccess
duration14.12s (wallclock: load + prompt eval + generation + network)
tokens1324 in / 1383 out
wallclock tok/s97.9 tok/s (end-to-end)
cost$0.0075
createdAt2026-04-27T17:29:29.340Z
gitCommitaf54e116f6f8
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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