vibe-openscad

iter-png-3/gpt-5.1-codex-mini / tier-2-offset-handle-mug

success tier 2

bare (gpt 5.1 codex mini)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 119.0s · 1328/20381t · $0.2261
SCAD (57 lines)
$fn = 160;

outer_radius = 40;
inner_radius = 35;
mug_height = 90;
bottom_thickness = 6;

inner_gap_width = 25;
inner_gap_height = 30;
handle_wall_thickness = 6;
handle_depth = 16;

handle_height = inner_gap_height + 2 * handle_wall_thickness;

module mug_body() {
    difference() {
        cylinder(r = outer_radius, h = mug_height, center = false);
        translate([0, 0, bottom_thickness])
            cylinder(r = inner_radius, h = mug_height - bottom_thickness, center = false);
    }
}

module handle_cross_section() {
    intersection() {
        union() {
            translate([0, -handle_height / 2])
                square([inner_gap_width + handle_wall_thickness, handle_height], center = false);
            translate([inner_gap_width + handle_wall_thickness, 0])
                circle(r = handle_height / 2);
        }
        translate([0, -handle_height / 2])
            square(
                [inner_gap_width + handle_wall_thickness + handle_height / 2, handle_height],
                center = false
            );
    }
}

module handle_shape() {
    difference() {
        linear_extrude(height = handle_depth, center = true)
            handle_cross_section();
        translate([inner_gap_width / 2, 0, 0])
            cube([inner_gap_width, inner_gap_height, handle_depth + 4], center = true);
    }
}

module handle_body() {
    translate([outer_radius - 2, 0, mug_height / 2])
        rotate([90, 0, 0])
            handle_shape();
}

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

meta

runIditer-png-3_gpt-5.1-codex-mini-31d12cc2bf1e-2026-04-28T19-19-53-800Z
matrixIditer-png-3/gpt-5.1-codex-mini
signature31d12cc2bf1e1545…
provideropenai
modelgpt-5.1-codex-mini
harnessbare
statussuccess
duration118.97s (wallclock: load + prompt eval + generation + network)
tokens1328 in / 20381 out
wallclock tok/s171.3 tok/s (end-to-end)
cost$0.2261
createdAt2026-04-28T19:19:53.801Z
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。