vibe-openscad

iter-png-3/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 7.8s · 1380/467t · $0.0102
SCAD (62 lines)
$fn = 128;

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

// Handle opening (clear space)
handle_open_w = 25;   // width in radial direction
handle_open_h = 30;   // height in Z direction

// Handle thickness / depth
handle_t = 5;         // band thickness and Y extrusion thickness

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

handle_outer_h = handle_open_h + 2 * handle_t;   // 40
handle_outer_w = handle_open_w + handle_t;       // 30
handle_center_z = mug_h / 2;

// 2D D-shape with flat side on the left, round side on the right
module d_shape_2d(total_w, total_h) {
    r = total_h / 2;
    rect_w = total_w - r;
    union() {
        translate([0, -r])
            square([rect_w, total_h], center = false);
        translate([rect_w, 0])
            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() {
    // Put the D shape in XZ plane and extrude along Y.
    // Flat side intersects the mug body to guarantee a solid manifold union.
    translate([outer_r - handle_t, 0, handle_center_z])
    rotate([90, 0, 0])
    difference() {
        linear_extrude(height = handle_t, center = true)
            d_shape_2d(handle_outer_w, handle_outer_h);

        translate([handle_t, 0, 0])
            linear_extrude(height = handle_t + 2, center = true)
                d_shape_2d(handle_open_w, handle_open_h);
    }
}

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

meta

runIditer-png-3_gpt-5.4-7c0670ba995c-2026-04-28T18-59-08-921Z
matrixIditer-png-3/gpt-5.4
signature7c0670ba995c2e27…
provideropenai
modelgpt-5.4-2026-03-05
harnessbare
statussuccess
duration7.75s (wallclock: load + prompt eval + generation + network)
tokens1380 in / 467 out
wallclock tok/s60.2 tok/s (end-to-end)
cost$0.0102
createdAt2026-04-28T18:59:08.921Z
gitCommit781e6c683dda
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。