vibe-openscad

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

success tier 2

bare (gpt 5.4 mini)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 104.7s · 273/14351t · $0.0432
SCAD (49 lines)
$fn = 96;

mug_h = 90;
body_od = 80;
body_id = 70;
base_th = 6;

handle_open_h = 30;
handle_open_w = 25;
handle_wall   = 5;

handle_outer_h = handle_open_h + 2 * handle_wall;
handle_outer_w = handle_open_w + 2 * handle_wall;

handle_depth = 18;
handle_x = body_od / 2 - 2;
handle_z = mug_h / 2;

module dshape(w, h) {
    r = h / 2;
    union() {
        translate([0, -r]) square([w - r, h], center = false);
        translate([w - r, 0]) circle(r = r);
    }
}

module body() {
    difference() {
        cylinder(h = mug_h, d = body_od);
        translate([0, 0, base_th])
            cylinder(h = mug_h - base_th + 2, d = body_id);
    }
}

module handle() {
    rotate([90, 0, 0])
        linear_extrude(height = handle_depth, center = true, convexity = 10)
            difference() {
                translate([handle_x, handle_z])
                    dshape(handle_outer_w, handle_outer_h);
                translate([handle_x + handle_wall, handle_z])
                    dshape(handle_open_w, handle_open_h);
            }
}

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

meta

runIdbare-high_gpt-5.4-mini-642c991fff06-2026-04-28T18-49-30-251Z
matrixIdbare-high/gpt-5.4-mini
signature642c991fff067f10…
provideropenai
modelgpt-5.4-mini-2026-03-17
harnessbare
statussuccess
duration104.71s (wallclock: load + prompt eval + generation + network)
tokens273 in / 14351 out
wallclock tok/s137.1 tok/s (end-to-end)
cost$0.0432
createdAt2026-04-28T18:49:30.251Z
gitCommit781e6c683dda
openscadOpenSCAD version 2026.04.27

prompt

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

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

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

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