vibe-openscad

iter-png-1/gpt-5.4 / tier-1-mug

success tier 1

bare (gpt 5.4)

render
bare render of tier-1-mug
loading STL…
success 4.7s · 1073/248t · $0.0061
SCAD (35 lines)
$fn = 128;

// Cup dimensions
outer_d = 80;
outer_r = outer_d / 2;
height = 100;
wall = 4;
bottom_thickness = 6;

// Handle dimensions
handle_tube_r = 12;          // radius of the ring section
handle_major_r = 18;         // ring center to tube center
handle_center_z = height / 2;
handle_center_x = outer_r + handle_major_r - 4;  // intersect outer wall by tube radius

module cup() {
    difference() {
        cylinder(h = height, r = outer_r);
        translate([0, 0, bottom_thickness])
            cylinder(h = height - bottom_thickness + 0.1, r = outer_r - wall);
    }
}

module ring_handle() {
    translate([handle_center_x, 0, handle_center_z])
        rotate([0, 90, 0])
            rotate_extrude(convexity = 10)
                translate([handle_major_r, 0, 0])
                    circle(r = handle_tube_r);
}

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

meta

runIditer-png-1_gpt-5.4-57072f6cdaa1-2026-04-27T17-07-29-339Z
matrixIditer-png-1/gpt-5.4
signature57072f6cdaa1970f…
provideropenai
modelgpt-5.4-2026-03-05
harnessbare
statussuccess
duration4.73s (wallclock: load + prompt eval + generation + network)
tokens1073 in / 248 out
wallclock tok/s52.5 tok/s (end-to-end)
cost$0.0061
createdAt2026-04-27T17:07:29.339Z
gitCommitaf54e116f6f8
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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