bare-think-off/gemini-3.1-flash-lite / tier-1-mug
success tier 1
bare (gemini 3.1 flash-lite)
render
$fn = 100;
// カップのパラメータ
outer_d = 80;
height = 100;
wall_thickness = 4;
bottom_thickness = 6;
// 取手のパラメータ
handle_r = 12; // 取手の断面半径
handle_offset = 35; // カップ中心からの距離
handle_center_z = height / 2;
module mug() {
difference() {
// カップの外形
cylinder(d = outer_d, h = height);
// 中をくり抜く
translate([0, 0, bottom_thickness])
cylinder(d = outer_d - wall_thickness * 2, h = height - bottom_thickness + 0.1);
}
// 取手
translate([outer_d / 2 - wall_thickness / 2, 0, handle_center_z]) {
rotate([0, 90, 0]) {
rotate_extrude(angle = 360) {
translate([handle_offset, 0, 0])
circle(r = handle_r);
}
}
}
}
mug(); パラメータ (6) —
スライダを動かすと openscad-wasm で再レンダリング
prompt
OpenSCAD で、外径 80mm、高さ 100mm、肉厚 4mm のマグカップを作ってください。 底面の厚みは 6mm とし、内側はくり抜いて飲み物を入れられる形状にしてください。 さらに、側面には外径方向に飛び出す半径 12mm の取手(リング状の取手)を付けてください。 取手はカップの中心高さあたりに付け、外周から十分にはみ出して指を通せる形にしてください。 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。