bare-low/claude-opus-4-5 / tier-2-offset-handle-mug
success tier 2
bare (claude opus 4.5)
render
// マグカップ - 取手は+X方向
$fn = 64;
// 本体パラメータ
outer_d = 80;
inner_d = 70;
height = 90;
bottom_thick = 6;
// 取手パラメータ
handle_inner_h = 30;
handle_inner_w = 25;
handle_thick = 5;
// 本体
difference() {
cylinder(d=outer_d, h=height);
translate([0, 0, bottom_thick])
cylinder(d=inner_d, h=height);
}
// 取手(+X方向)
handle_outer_w = handle_inner_w + handle_thick * 2;
handle_outer_h = handle_inner_h + handle_thick * 2;
handle_center_z = height / 2;
translate([outer_d/2, 0, handle_center_z])
rotate([90, 0, 0])
rotate([0, 90, 0])
difference() {
// 外側形状
hull() {
translate([0, -handle_inner_h/2 - handle_thick/2, 0])
cylinder(d=handle_thick, h=handle_outer_w);
translate([0, handle_inner_h/2 + handle_thick/2, 0])
cylinder(d=handle_thick, h=handle_outer_w);
translate([handle_inner_w/2 + handle_thick/2, 0, 0])
cylinder(d=handle_thick, h=handle_outer_w);
}
// 内側くり抜き
translate([0, 0, handle_thick])
hull() {
translate([0, -handle_inner_h/2, 0])
cylinder(d=0.1, h=handle_inner_w);
translate([0, handle_inner_h/2, 0])
cylinder(d=0.1, h=handle_inner_w);
translate([handle_inner_w/2, 0, 0])
cylinder(d=0.1, h=handle_inner_w);
}
} パラメータ (7) —
スライダを動かすと openscad-wasm で再レンダリング
prompt
OpenSCAD で、向きが指定されたマグカップを作ってください。 本体: - 外径 80mm、内径 70mm(肉厚 5mm)、高さ 90mm の円筒形マグ - 底面の厚みは 6mm - 内側は飲み物を入れられるよう中空 取手(handle): - マグの **+X 軸方向の側面のみ** に付ける(他の方向には付けない) - 取手は D 字形状(外側が半円、本体側が直線)で、本体外周にしっかり接続する - 取手の内側の空間は高さ 30mm × 幅 25mm(指 3 本ぐらい入る) - 取手はマグの高さ方向の中央付近に付ける - 本体と取手は確実に union され、マニフォールド(隙間や宙吊りなし)を保つ 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。