bare/gpt-5.1-codex-mini / tier-2-offset-handle-mug
success tier 2
bare (gpt 5.1 codex mini)
render
$fn = 120;
outer_radius = 40;
inner_radius = 35;
mug_height = 90;
bottom_thickness = 6;
handle_radius = 32;
handle_length = 12;
handle_inner_width = 25;
handle_inner_height = 30;
handle_margin = 2;
module mug_body() {
difference() {
// 外側
cylinder(r = outer_radius, h = mug_height);
// 内側(底面厚み分だけ高く)
translate([0, 0, bottom_thickness])
cylinder(r = inner_radius, h = mug_height - bottom_thickness);
}
}
module handle_outer() {
linear_extrude(height = handle_length, center = true)
intersection() {
circle(r = handle_radius);
translate([0, -handle_radius])
square([handle_radius, 2 * handle_radius]);
}
}
module handle_body() {
translate([outer_radius + handle_length / 2, 0, mug_height / 2])
multmatrix([
[0, 0, 1, 0],
[1, 0, 0, 0],
[0, 1, 0, 0],
[0, 0, 0, 1]
])
handle_outer();
}
module handle_cutout() {
translate([
outer_radius - handle_margin,
0,
mug_height / 2 - handle_inner_height / 2
])
cube([handle_length + handle_margin * 2, handle_inner_width, handle_inner_height]);
}
module mug_handle() {
difference() {
handle_body();
handle_cutout();
}
}
union() {
mug_body();
mug_handle();
} パラメータ (9) —
スライダを動かすと openscad-wasm で再レンダリング
iteration chain
各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。
→ children (1)
prompt
OpenSCAD で、向きが指定されたマグカップを作ってください。 本体: - 外径 80mm、内径 70mm(肉厚 5mm)、高さ 90mm の円筒形マグ - 底面の厚みは 6mm - 内側は飲み物を入れられるよう中空 取手(handle): - マグの **+X 軸方向の側面のみ** に付ける(他の方向には付けない) - 取手は D 字形状(外側が半円、本体側が直線)で、本体外周にしっかり接続する - 取手の内側の空間は高さ 30mm × 幅 25mm(指 3 本ぐらい入る) - 取手はマグの高さ方向の中央付近に付ける - 本体と取手は確実に union され、マニフォールド(隙間や宙吊りなし)を保つ 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。