vibe-openscad

bare-high/o3 / tier-1-mug

success tier 1

bare (o3)

render
bare render of tier-1-mug
loading STL…
success 221.5s · 168/13825t · $0.1109
SCAD (37 lines)
// 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 で再レンダリング

meta

runIdbare-high_o3-edc986efce01-2026-04-27T22-11-16-595Z
matrixIdbare-high/o3
signatureedc986efce01fa53…
provideropenai
modelo3-2025-04-16
harnessbare
statussuccess
duration221.50s (wallclock: load + prompt eval + generation + network)
tokens168 in / 13825 out
wallclock tok/s62.4 tok/s (end-to-end)
cost$0.1109
createdAt2026-04-27T22:11:16.595Z
gitCommit7b4e701995ea
openscadOpenSCAD version 2026.04.27

prompt

OpenSCAD で、外径 80mm、高さ 100mm、肉厚 4mm のマグカップを作ってください。
底面の厚みは 6mm とし、内側はくり抜いて飲み物を入れられる形状にしてください。
さらに、側面には外径方向に飛び出す半径 12mm の取手(リング状の取手)を付けてください。
取手はカップの中心高さあたりに付け、外周から十分にはみ出して指を通せる形にしてください。

完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。