vibe-openscad

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

success tier 1

bare (gpt 5.4 mini)

render
bare render of tier-1-mug
loading STL…
success 3.4s · 1109/298t · $0.0013
SCAD (42 lines)
$fn = 128;

outer_d = 80;
height = 100;
wall = 4;
bottom = 6;

handle_ring_r = 12;   // 取手の半径
handle_tube_r = 4;    // 取手の太さ
handle_z = height * 0.5;
handle_clear = 8;     // 外周からのはみ出し量

module mug_body() {
    difference() {
        // 外形
        cylinder(h = height, d = outer_d);

        // 内側のくり抜き(底厚 6mm)
        translate([0, 0, bottom])
            cylinder(h = height - bottom + 0.5, d = outer_d - 2 * wall);
    }
}

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

module ring_handle() {
    // カップ外周から十分に外側へ配置
    handle_center_x = outer_d / 2 + handle_clear + handle_ring_r;

    translate([handle_center_x, 0, handle_z])
        rotate([0, 90, 0])
            torus(handle_ring_r, handle_tube_r);
}

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

meta

runIditer-png-1_gpt-5.4-mini-572064a11764-2026-04-27T17-07-57-182Z
matrixIditer-png-1/gpt-5.4-mini
signature572064a11764ef7b…
provideropenai
modelgpt-5.4-mini-2026-03-17
harnessbare
statussuccess
duration3.42s (wallclock: load + prompt eval + generation + network)
tokens1109 in / 298 out
wallclock tok/s87.2 tok/s (end-to-end)
cost$0.0013
createdAt2026-04-27T17:07:57.183Z
gitCommitaf54e116f6f8
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

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

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