vibe-openscad

iter-png-1/gemini-3.1-flash-lite / tier-2-offset-handle-mug

success tier 2

bare (gemini 3.1 flash-lite)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 4.1s · 1946/525t · $0.0004
SCAD (53 lines)
$fn = 100;

// マグ本体のパラメータ
outer_d = 80;
inner_d = 70;
height = 90;
bottom_thick = 6;

// 取手のパラメータ
handle_inner_h = 30;
handle_inner_w = 25;
handle_thick = 10;

// マグ本体の作成
module mug_body() {
    difference() {
        cylinder(d = outer_d, h = height);
        translate([0, 0, bottom_thick])
            cylinder(d = inner_d, h = height - bottom_thick + 0.1);
    }
}

// 取手の作成
module handle() {
    // D字形状をMinkowski等を使わず、円柱と直方体の組み合わせで滑らかに構築
    // 取手の高さは inner_h + 上下厚み、幅は inner_w + 外側厚み
    h_outer_d = handle_inner_h + 2 * handle_thick;
    
    translate([outer_d / 2 - 1, 0, height / 2]) {
        rotate([0, 90, 0]) {
            linear_extrude(height = handle_thick) {
                difference() {
                    // 外形: 半円と長方形
                    union() {
                        translate([0, 0]) circle(d = h_outer_d);
                        translate([-h_outer_d / 2, -h_outer_d / 2]) square([h_outer_d / 2, h_outer_d]);
                    }
                    // 内穴: 半円と長方形
                    union() {
                        translate([0, 0]) circle(d = handle_inner_h);
                        translate([-handle_inner_h / 2 - 2, -handle_inner_h / 2]) square([handle_inner_h / 2 + 2, handle_inner_h]);
                    }
                }
            }
        }
    }
}

// 本体と取手の接合部を確実にするため、わずかにめり込ませてマニフォールドを維持
union() {
    mug_body();
    handle();
}
パラメータ (7)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIditer-png-1_gemini-3.1-flash-lite-549d231d66ae-2026-04-28T18-55-52-709Z
matrixIditer-png-1/gemini-3.1-flash-lite
signature549d231d66aef961…
providergoogle
modelgemini-3.1-flash-lite-preview
harnessbare
statussuccess
duration4.08s (wallclock: load + prompt eval + generation + network)
tokens1946 in / 525 out
wallclock tok/s128.8 tok/s (end-to-end)
cost$0.0004
createdAt2026-04-28T18:55:52.709Z
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。