vibe-openscad

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

module mug_body() {
    difference() {
        cylinder(h = 90, d = 80);
        translate([0, 0, 6])
            cylinder(h = 90 - 6 + 0.2, d = 70);
    }
}

module handle_2d() {
    // D-shaped profile in the X-Z plane:
    // flat side on the body, semicircle on the outside.
    outer_w = 35;
    outer_h = 40;
    inner_w = 25;
    inner_h = 30;
    cx = 57.5;
    cz = 45;

    difference() {
        union() {
            translate([40, cz - outer_h / 2])
                square([outer_w / 2, outer_h], center = false);
            translate([cx, cz])
                circle(r = outer_h / 2);
        }
        union() {
            translate([45, cz - inner_h / 2])
                square([inner_w / 2, inner_h], center = false);
            translate([cx, cz])
                circle(r = inner_h / 2);
        }
    }
}

module handle() {
    // Extrude along Y to give the handle thickness.
    // Slight overlap into the mug body ensures a robust union.
    linear_extrude(height = 16, center = true, convexity = 10)
        handle_2d();
}

union() {
    mug_body();

    // Small bridge to guarantee a solid manifold connection on the +X side.
    translate([38.5, -8, 26])
        cube([8.0, 16, 38], center = false);

    handle();
}

meta

runIdbare-low_gpt-5.4-mini-720b0bebbdd4-2026-04-28T18-47-48-702Z
matrixIdbare-low/gpt-5.4-mini
signature720b0bebbdd47b4f…
provideropenai
modelgpt-5.4-mini-2026-03-17
harnessbare
statussuccess
duration14.62s (wallclock: load + prompt eval + generation + network)
tokens273 in / 1725 out
wallclock tok/s118.0 tok/s (end-to-end)
cost$0.0053
createdAt2026-04-28T18:47:48.702Z
gitCommit781e6c683dda
openscadOpenSCAD version 2026.04.27

prompt

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

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

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

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