vibe-openscad

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

success tier 2

bare (gpt 5.5)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 150.5s · 273/6721t · $0.0676
SCAD (86 lines)
$fn = 128;

outer_diameter = 80;
inner_diameter = 70;
mug_height = 90;
bottom_thickness = 6;

outer_radius = outer_diameter / 2;
inner_radius = inner_diameter / 2;

handle_opening_height = 30;
handle_opening_width = 25;
handle_wall = 7;
handle_depth = 16;
handle_center_z = mug_height / 2;
handle_opening_left_x = outer_radius + 5;
handle_attach_overlap = 2.5;

eps = 0.2;

module mug_body() {
    difference() {
        cylinder(h = mug_height, r = outer_radius);

        translate([0, 0, bottom_thickness])
            cylinder(h = mug_height - bottom_thickness + eps, r = inner_radius);
    }
}

module d_shape(x0, z0, h, w, segments = 72) {
    polygon(
        points = concat(
            [[x0, z0 - h / 2]],
            [
                for (i = [1 : segments - 1])
                    let (a = -90 + 180 * i / segments)
                        [x0 + w * cos(a), z0 + (h / 2) * sin(a)]
            ],
            [[x0, z0 + h / 2]]
        )
    );
}

module handle_profile() {
    difference() {
        offset(r = handle_wall)
            d_shape(
                handle_opening_left_x,
                handle_center_z,
                handle_opening_height,
                handle_opening_width
            );

        d_shape(
            handle_opening_left_x,
            handle_center_z,
            handle_opening_height,
            handle_opening_width
        );
    }
}

module handle() {
    union() {
        rotate([90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                handle_profile();

        translate([
            outer_radius - handle_attach_overlap,
            -handle_depth / 2,
            handle_center_z - handle_opening_height / 2 - handle_wall
        ])
            cube([
                handle_opening_left_x - (outer_radius - handle_attach_overlap),
                handle_depth,
                handle_opening_height + 2 * handle_wall
            ]);
    }
}

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

meta

runIdbare_gpt-5.5-c14470918034-2026-04-28T14-14-48-984Z
matrixIdbare/gpt-5.5
signaturec14470918034fd57…
provideropenai
modelgpt-5.5-2026-04-23
harnessbare
statussuccess
duration150.47s (wallclock: load + prompt eval + generation + network)
tokens273 in / 6721 out
wallclock tok/s44.7 tok/s (end-to-end)
cost$0.0676
createdAt2026-04-28T14:14:48.984Z
gitCommit2d7e9895d68a
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。