vibe-openscad

bare/gpt-5.4 / tier-2-offset-handle-mug

success tier 2

bare (gpt 5.4)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 8.2s · 273/543t · $0.0092
SCAD (66 lines)
$fn = 128;

// Mug dimensions
outer_d = 80;
inner_d = 70;
mug_h   = 90;
bottom_t = 6;

// Handle opening dimensions
handle_open_w = 25;   // radial width of finger opening
handle_open_h = 30;   // vertical height of finger opening

// Handle thickness around opening
handle_wall = 5;

// Derived
outer_r = outer_d / 2;
inner_r = inner_d / 2;

// Handle placement and size
handle_center_z = mug_h / 2;
handle_outer_h = handle_open_h + 2 * handle_wall;
handle_r = handle_outer_h / 2;                  // radius for rounded top/bottom in YZ profile
handle_straight_h = handle_open_h;              // straight section height in YZ profile

// Radial extents in X
handle_inner_x = outer_r - 1.0;                 // slight overlap into mug for manifold union
handle_outer_x = outer_r + handle_open_w + 2 * handle_wall;

// 2D D-shape in XZ plane, then extruded along Y
module d_shape_2d(x0, x1, zc, open_h) {
    r = open_h / 2;
    union() {
        translate([x0, zc - r]) square([x1 - x0 - r, open_h], center = false);
        translate([x1 - r, zc]) circle(r = r);
    }
}

module mug_body() {
    difference() {
        cylinder(h = mug_h, r = outer_r);
        translate([0, 0, bottom_t])
            cylinder(h = mug_h - bottom_t + 0.01, r = inner_r);
    }
}

module handle() {
    difference() {
        // Outer D-shape
        translate([0, -handle_r, 0])
            rotate([-90, 0, 0])
                linear_extrude(height = 2 * handle_r)
                    d_shape_2d(handle_inner_x, handle_outer_x, handle_center_z, handle_outer_h);

        // Inner opening D-shape
        translate([0, -handle_open_h/2, 0])
            rotate([-90, 0, 0])
                linear_extrude(height = handle_open_h)
                    d_shape_2d(outer_r + handle_wall, outer_r + handle_wall + handle_open_w, handle_center_z, handle_open_h);
    }
}

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

meta

runIdbare_gpt-5.4-e58512731a58-2026-04-28T13-47-02-228Z
matrixIdbare/gpt-5.4
signaturee58512731a58060e…
provideropenai
modelgpt-5.4-2026-03-05
harnessbare
statussuccess
duration8.21s (wallclock: load + prompt eval + generation + network)
tokens273 in / 543 out
wallclock tok/s66.2 tok/s (end-to-end)
cost$0.0092
createdAt2026-04-28T13:47:02.228Z
gitCommit6bcf5489cb58
openscadOpenSCAD version 2026.04.27

iteration chain

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

prompt

OpenSCAD で、向きが指定されたマグカップを作ってください。

本体:
- 外径 80mm、内径 70mm(肉厚 5mm)、高さ 90mm の円筒形マグ
- 底面の厚みは 6mm
- 内側は飲み物を入れられるよう中空

取手(handle):
- マグの **+X 軸方向の側面のみ** に付ける(他の方向には付けない)
- 取手は D 字形状(外側が半円、本体側が直線)で、本体外周にしっかり接続する
- 取手の内側の空間は高さ 30mm × 幅 25mm(指 3 本ぐらい入る)
- 取手はマグの高さ方向の中央付近に付ける
- 本体と取手は確実に union され、マニフォールド(隙間や宙吊りなし)を保つ

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