vibe-openscad

bare/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 3.3s · 232/582t · $0.0003
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;

// マグ本体の作成
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() {
    handle_outer_w = handle_inner_w + 2 * handle_thick;
    handle_total_h = handle_inner_h + 2 * handle_thick;
    
    translate([outer_d / 2 - 1, 0, height / 2]) {
        rotate([0, 90, 0]) {
            difference() {
                // 外側の形状 (D字の背にあたる半円と長方形)
                union() {
                    translate([0, 0, -handle_total_h / 2])
                        cylinder(d = handle_outer_w, h = handle_total_h);
                    translate([0, -handle_outer_w / 2, -handle_total_h / 2])
                        cube([handle_outer_w / 2, handle_outer_w, handle_total_h]);
                }
                // 内側の空間 (D字の穴)
                union() {
                    translate([0, 0, -handle_inner_h / 2])
                        cylinder(d = handle_inner_w, h = handle_inner_h);
                    translate([0, -handle_inner_w / 2, -handle_inner_h / 2])
                        cube([handle_inner_w / 2, handle_inner_w, handle_inner_h]);
                }
                // マグ本体との接続面をフラットにするための切り取り
                translate([-handle_outer_w, -handle_outer_w, -handle_total_h])
                    cube([handle_outer_w, handle_outer_w * 2, handle_total_h * 2]);
            }
        }
    }
}

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

meta

runIdbare_gemini-3.1-flash-lite-8bfe305f2334-2026-04-28T10-17-06-952Z
matrixIdbare/gemini-3.1-flash-lite
signature8bfe305f233479d7…
providergoogle
modelgemini-3.1-flash-lite-preview
harnessbare
statussuccess
duration3.26s (wallclock: load + prompt eval + generation + network)
tokens232 in / 582 out
wallclock tok/s178.5 tok/s (end-to-end)
cost$0.0003
createdAt2026-04-28T10:17:06.952Z
gitCommit266a4b423d4e
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 ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。