vibe-openscad

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

success tier 2

bare (gpt 5.1 codex max)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 28.4s · 1509/2923t · $0.0343
SCAD (69 lines)
// Parameters
outer_diameter = 80;
inner_diameter = 70;
height = 90;
bottom_thickness = 6;

handle_inner_height = 30;
handle_inner_width = 25;
handle_wall = 5;
handle_depth = 12;
handle_overlap = 1;
$fn = 100;

// Mug body
module mug_body() {
    difference() {
        cylinder(h = height, r = outer_diameter / 2);
        translate([0, 0, bottom_thickness])
            cylinder(h = height - bottom_thickness, r = inner_diameter / 2);
    }
}

// 2D D-shape for handle in the X (radial) and Y (vertical) plane, centered vertically
module handle_shape2d() {
    outer_h = handle_inner_height + 2 * handle_wall;
    inner_h = handle_inner_height;
    outer_r = outer_h / 2;
    inner_r = inner_h / 2;
    outer_w_total = handle_inner_width + 2 * handle_wall;
    inner_w_total = handle_inner_width;
    outer_w_str = outer_w_total - outer_r;
    inner_w_str = inner_w_total - inner_r;
    difference() {
        intersection() {
            union() {
                translate([0, -outer_h / 2])
                    square([outer_w_str, outer_h], center = false);
                translate([outer_w_str, 0])
                    circle(r = outer_r);
            }
            translate([0, -outer_h / 2])
                square([outer_w_total, outer_h], center = false);
        }
        intersection() {
            union() {
                translate([0, -inner_h / 2])
                    square([inner_w_str, inner_h], center = false);
                translate([inner_w_str, 0])
                    circle(r = inner_r);
            }
            translate([0, -outer_h / 2])
                square([outer_w_total, outer_h], center = false);
        }
    }
}

// Handle 3D
module handle() {
    translate([outer_diameter / 2 - handle_overlap, 0, height / 2])
        rotate([-90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                handle_shape2d();
}

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

meta

runIditer-png-3_gpt-5.1-codex-max-7bf13e8b811a-2026-04-28T19-18-07-350Z
matrixIditer-png-3/gpt-5.1-codex-max
signature7bf13e8b811a81f5…
provideropenai
modelgpt-5.1-codex-max
harnessbare
statussuccess
duration28.38s (wallclock: load + prompt eval + generation + network)
tokens1509 in / 2923 out
wallclock tok/s103.0 tok/s (end-to-end)
cost$0.0343
createdAt2026-04-28T19:18:07.350Z
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。