bare-high/gpt-5 / tier-1-mug
success tier 1
bare (gpt 5)
render
$fn = 128;
outer_d = 80; // 外径
height = 100; // 高さ
wall = 4; // 肉厚
bottom = 6; // 底厚
handle_R = 12; // 取手(リング)の半径
handle_r = 4; // 取手の太さ(断面半径)
eps = 0.6; // カップと取手を確実に接合するためのめり込み量
module cup() {
difference() {
cylinder(h = height, r = outer_d/2);
translate([0, 0, bottom])
cylinder(h = height - bottom, r = outer_d/2 - wall);
}
}
module torus_y(R, r) {
rotate([90, 0, 0])
rotate_extrude(angle = 360)
translate([R, 0, 0]) circle(r = r);
}
union() {
cup();
translate([outer_d/2 + (handle_R + handle_r) - eps, 0, height/2])
torus_y(handle_R, handle_r);
} パラメータ (7) —
スライダを動かすと openscad-wasm で再レンダリング
prompt
OpenSCAD で、外径 80mm、高さ 100mm、肉厚 4mm のマグカップを作ってください。 底面の厚みは 6mm とし、内側はくり抜いて飲み物を入れられる形状にしてください。 さらに、側面には外径方向に飛び出す半径 12mm の取手(リング状の取手)を付けてください。 取手はカップの中心高さあたりに付け、外周から十分にはみ出して指を通せる形にしてください。 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。