bare-high/o3 / tier-1-mug
success tier 1
bare (o3)
render
// Mug dimensions
outer_diameter = 80;
outer_radius = outer_diameter / 2; // 40 mm
height = 100;
wall_thickness = 4;
bottom_thickness = 6;
// Handle dimensions
handle_radius = 12; // ring (major) radius
handle_thickness = 4; // cross-section (minor) radius
handle_offset = 2; // shifts handle axis outward for good overlap
handle_height = height / 2;
$fn = 100; // smoothness
module mug_body() {
cylinder(h = height, r = outer_radius);
}
module mug_handle() {
translate([outer_radius + handle_offset, 0, handle_height])
rotate([0, 90, 0])
rotate_extrude(convexity = 10)
translate([handle_radius, 0, 0])
circle(r = handle_thickness);
}
difference() {
union() {
mug_body();
mug_handle();
}
// Hollow interior
translate([0, 0, bottom_thickness])
cylinder(h = height - bottom_thickness,
r = outer_radius - wall_thickness);
} パラメータ (7) —
スライダを動かすと openscad-wasm で再レンダリング
prompt
OpenSCAD で、外径 80mm、高さ 100mm、肉厚 4mm のマグカップを作ってください。 底面の厚みは 6mm とし、内側はくり抜いて飲み物を入れられる形状にしてください。 さらに、側面には外径方向に飛び出す半径 12mm の取手(リング状の取手)を付けてください。 取手はカップの中心高さあたりに付け、外周から十分にはみ出して指を通せる形にしてください。 完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。