bare-high/gpt-5.5 / tier-2-offset-handle-mug
success tier 2
bare (gpt 5.5)
render
$fn = 128;
mug_outer_d = 80;
mug_inner_d = 70;
mug_height = 90;
bottom_th = 6;
outer_r = mug_outer_d / 2;
inner_r = mug_inner_d / 2;
handle_inner_h = 30;
handle_inner_w = 25;
handle_th = 8;
handle_depth = 16;
handle_z = mug_height / 2;
handle_attach_x = outer_r - 2;
handle_outer_h = handle_inner_h + handle_th * 2;
handle_outer_w = handle_inner_w + handle_th * 2;
function d_shape_points(w, h, n = 64) =
let(r = h / 2, cx = w - r)
concat(
[[0, -r]],
[for (i = [0:n])
let(a = -90 + 180 * i / n)
[cx + r * cos(a), r * sin(a)]
],
[[0, r]]
);
module d_shape_2d(w, h) {
polygon(points = d_shape_points(w, h));
}
module mug_body() {
difference() {
cylinder(h = mug_height, r = outer_r);
translate([0, 0, bottom_th])
cylinder(h = mug_height, r = inner_r);
}
}
module handle() {
rotate([90, 0, 0])
linear_extrude(height = handle_depth, center = true, convexity = 10)
translate([handle_attach_x, handle_z])
difference() {
d_shape_2d(handle_outer_w, handle_outer_h);
translate([handle_th, 0])
d_shape_2d(handle_inner_w, handle_inner_h);
}
}
union() {
mug_body();
handle();
} パラメータ (8) —
スライダを動かすと openscad-wasm で再レンダリング
prompt
OpenSCAD で、向きが指定されたマグカップを作ってください。 本体: - 外径 80mm、内径 70mm(肉厚 5mm)、高さ 90mm の円筒形マグ - 底面の厚みは 6mm - 内側は飲み物を入れられるよう中空 取手(handle): - マグの **+X 軸方向の側面のみ** に付ける(他の方向には付けない) - 取手は D 字形状(外側が半円、本体側が直線)で、本体外周にしっかり接続する - 取手の内側の空間は高さ 30mm × 幅 25mm(指 3 本ぐらい入る) - 取手はマグの高さ方向の中央付近に付ける - 本体と取手は確実に union され、マニフォールド(隙間や宙吊りなし)を保つ 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。