iter-png-2/claude-opus-4-0 / tier-1-mug
success tier 1
bare (claude opus 4)
render
// マグカップのパラメータ
outer_diameter = 80;
outer_radius = outer_diameter / 2;
height = 100;
wall_thickness = 4;
bottom_thickness = 6;
handle_radius = 12;
// マグカップ本体
difference() {
// 外側の円柱
cylinder(h = height, r = outer_radius, $fn = 100);
// 内側をくり抜く
translate([0, 0, bottom_thickness])
cylinder(h = height - bottom_thickness + 1, r = outer_radius - wall_thickness, $fn = 100);
}
// 取手
difference() {
union() {
// 取手本体(トーラス)
translate([outer_radius + handle_radius, 0, height / 2])
rotate([90, 0, 0])
rotate_extrude($fn = 100)
translate([handle_radius, 0, 0])
circle(r = handle_radius, $fn = 50);
// カップと取手の接続部分
translate([outer_radius - wall_thickness/2, -handle_radius, height/2 - handle_radius])
cube([wall_thickness + handle_radius, handle_radius * 2, handle_radius * 2]);
}
// カップ本体の形状で切り取る(きれいな接続のため)
cylinder(h = height, r = outer_radius - wall_thickness - 0.01, $fn = 100);
} パラメータ (5) —
スライダを動かすと openscad-wasm で再レンダリング
iteration chain
各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。
← parent
iter-png-1/claude-opus-4-0 success → children (1)
prompt
OpenSCAD で、外径 80mm、高さ 100mm、肉厚 4mm のマグカップを作ってください。 底面の厚みは 6mm とし、内側はくり抜いて飲み物を入れられる形状にしてください。 さらに、側面には外径方向に飛び出す半径 12mm の取手(リング状の取手)を付けてください。 取手はカップの中心高さあたりに付け、外周から十分にはみ出して指を通せる形にしてください。 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。