vibe-openscad

bare-low/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 27.3s · 273/1352t · $0.0222
SCAD (52 lines)
$fn = 128;

mug_outer_d = 80;
mug_inner_d = 70;
mug_h       = 90;
bottom_t    = 6;

handle_inner_h = 30;
handle_inner_w = 25;
handle_wall    = 5;
handle_thick_y = 12;

handle_outer_h = handle_inner_h + 2*handle_wall; // 40
handle_outer_w = handle_inner_w + 2*handle_wall; // 35

mug_r = mug_outer_d/2;
handle_zc = mug_h/2;
attach_overlap = 3;
handle_x = mug_r - attach_overlap;

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

module mug_body() {
    difference() {
        cylinder(h=mug_h, d=mug_outer_d);
        translate([0, 0, bottom_t])
            cylinder(h=mug_h - bottom_t + 0.01, d=mug_inner_d);
    }
}

module handle() {
    translate([handle_x, -handle_thick_y/2, handle_zc - handle_outer_h/2])
        rotate([-90, 0, 0])
            linear_extrude(height=handle_thick_y)
                difference() {
                    d2d(handle_outer_h, handle_outer_w);
                    translate([handle_wall, handle_wall])
                        d2d(handle_inner_h, handle_inner_w);
                }
}

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

meta

runIdbare-low_gpt-5.4-5d22133a2d7f-2026-04-28T18-47-51-438Z
matrixIdbare-low/gpt-5.4
signature5d22133a2d7f9d99…
provideropenai
modelgpt-5.4-2026-03-05
harnessbare
statussuccess
duration27.28s (wallclock: load + prompt eval + generation + network)
tokens273 in / 1352 out
wallclock tok/s49.6 tok/s (end-to-end)
cost$0.0222
createdAt2026-04-28T18:47:51.438Z
gitCommit781e6c683dda
openscadOpenSCAD version 2026.04.27

prompt

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

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

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

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