vibe-openscad

iter-png-1/gpt-5.1-codex-max / tier-1-mug

success tier 1

bare (gpt 5.1 codex max)

render
bare render of tier-1-mug
loading STL…
success 28.3s · 1087/3352t · $0.0384
SCAD (31 lines)
$fn = 100;

outer_radius = 40;
wall_thickness = 4;
height = 100;
bottom_thickness = 6;

handle_R = 12;
handle_r = 4;
handle_center_z = height / 2;

module mug() {
    difference() {
        cylinder(h = height, r = outer_radius);
        translate([0, 0, bottom_thickness])
            cylinder(h = height - bottom_thickness, r = outer_radius - wall_thickness);
    }
}

module ring_handle() {
    translate([outer_radius + handle_R + handle_r, 0, handle_center_z])
        rotate([90, 0, 0])
            rotate_extrude(angle = 360)
                translate([handle_R, 0, 0])
                    circle(r = handle_r);
}

union() {
    mug();
    ring_handle();
}
パラメータ (6)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIditer-png-1_gpt-5.1-codex-max-8c32c71ca6e4-2026-04-28T19-16-24-482Z
matrixIditer-png-1/gpt-5.1-codex-max
signature8c32c71ca6e40e77…
provideropenai
modelgpt-5.1-codex-max
harnessbare
statussuccess
duration28.26s (wallclock: load + prompt eval + generation + network)
tokens1087 in / 3352 out
wallclock tok/s118.6 tok/s (end-to-end)
cost$0.0384
createdAt2026-04-28T19:16:24.482Z
gitCommit781e6c683dda
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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