iter-png-1/gemini-3.1-flash-lite / tier-2-offset-handle-mug
success tier 2
bare (gemini 3.1 flash-lite)
render
$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 で再レンダリング
iteration chain
各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。
← parent
bare/gemini-3.1-flash-lite success → children (1)
prompt
OpenSCAD で、向きが指定されたマグカップを作ってください。 本体: - 外径 80mm、内径 70mm(肉厚 5mm)、高さ 90mm の円筒形マグ - 底面の厚みは 6mm - 内側は飲み物を入れられるよう中空 取手(handle): - マグの **+X 軸方向の側面のみ** に付ける(他の方向には付けない) - 取手は D 字形状(外側が半円、本体側が直線)で、本体外周にしっかり接続する - 取手の内側の空間は高さ 30mm × 幅 25mm(指 3 本ぐらい入る) - 取手はマグの高さ方向の中央付近に付ける - 本体と取手は確実に union され、マニフォールド(隙間や宙吊りなし)を保つ 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。