vibe-openscad

bare/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.5s · 168/1351t · $0.0165
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([48, 0, 50])
        rotate([90, 0, 0])
            torus(12, 4);
}

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

meta

runIdbare_gpt-5.2-codex-530075fe159c-2026-04-27T22-21-06-984Z
matrixIdbare/gpt-5.2-codex
signature530075fe159c2c00…
provideropenai
modelgpt-5.2-codex
harnessbare
statussuccess
duration20.46s (wallclock: load + prompt eval + generation + network)
tokens168 in / 1351 out
wallclock tok/s66.0 tok/s (end-to-end)
cost$0.0165
createdAt2026-04-27T22:21:06.984Z
gitCommit4b7e41e217e8
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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