vibe-openscad

iter-png-2/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.3s · 1889/571t · $0.0004
SCAD (56 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;   // 取手自体の肉厚
handle_width = 15;   // 取手の奥行き(押し出し厚み)

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字形状をプロファイルとして作成
    translate([outer_d / 2 - 2, 0, height / 2]) {
        rotate([90, 0, 90]) {
            linear_extrude(height = handle_width) {
                difference() {
                    // 外形: 半円(幅は空間+肉厚*2)と直線部
                    union() {
                        translate([0, handle_inner_h/2]) circle(d = handle_inner_h + handle_thick * 2);
                        translate([-(handle_inner_h/2 + handle_thick), -handle_inner_h/2]) 
                            square([handle_inner_h/2 + handle_thick, handle_inner_h + handle_thick * 2]);
                    }
                    // 内穴: 半円
                    union() {
                        translate([0, handle_inner_h/2]) circle(d = handle_inner_h);
                        translate([-handle_inner_w, -handle_inner_h/2]) 
                            square([handle_inner_w, handle_inner_h]);
                    }
                }
            }
        }
    }
}

union() {
    mug_body();
    // 取手が本体と重なるように少しだけめり込ませてunion
    intersection() {
        handle();
        translate([outer_d/2 - 5, -50, 0]) cube([50, 100, 200]);
    }
    handle();
}
パラメータ (8)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIditer-png-2_gemini-3.1-flash-lite-18f1f58d6a13-2026-04-28T18-56-05-203Z
matrixIditer-png-2/gemini-3.1-flash-lite
signature18f1f58d6a13e09b…
providergoogle
modelgemini-3.1-flash-lite-preview
harnessbare
statussuccess
duration4.34s (wallclock: load + prompt eval + generation + network)
tokens1889 in / 571 out
wallclock tok/s131.6 tok/s (end-to-end)
cost$0.0004
createdAt2026-04-28T18:56:05.203Z
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。