vibe-openscad

iter-png-1/gpt-5.2-codex / tier-1-mug

success tier 1

bare (gpt 5.2 codex)

render
bare render of tier-1-mug
loading STL…
success 20.3s · 870/1665t · $0.0214
SCAD (26 lines)
$fn = 100;

module mug_body() {
    difference() {
        cylinder(h=100, r=40);
        translate([0,0,6])
            cylinder(h=94, r=36);
    }
}

module torus(R, r) {
    rotate_extrude()
        translate([R, 0, 0])
            circle(r);
}

module handle() {
    translate([54, 0, 50])
        rotate([90, 0, 0])
            torus(12, 4);
}

union() {
    mug_body();
    handle();
}

meta

runIditer-png-1_gpt-5.2-codex-b4dbc967a7c8-2026-04-28T19-17-05-911Z
matrixIditer-png-1/gpt-5.2-codex
signatureb4dbc967a7c80b37…
provideropenai
modelgpt-5.2-codex
harnessbare
statussuccess
duration20.35s (wallclock: load + prompt eval + generation + network)
tokens870 in / 1665 out
wallclock tok/s81.8 tok/s (end-to-end)
cost$0.0214
createdAt2026-04-28T19:17:05.911Z
gitCommit781e6c683dda
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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