vibe-openscad

bare-high/gpt-5.4-mini / tier-1-mug

success tier 1

bare (gpt 5.4 mini)

render
bare render of tier-1-mug
loading STL…
success 78.2s · 168/11658t · $0.0350
SCAD (27 lines)
$fn = 128;

outer_d = 80;
height = 100;
wall = 4;
bottom = 6;

handle_R = 12;
handle_r = 3;

module torus(R, r) {
    rotate_extrude(convexity = 10)
        translate([R, 0, 0])
            circle(r = r, $fn = 64);
}

union() {
    difference() {
        cylinder(h = height, r = outer_d / 2);
        translate([0, 0, bottom])
            cylinder(h = height - bottom + 0.2, r = outer_d / 2 - wall);
    }

    translate([outer_d / 2 + handle_R, 0, height / 2])
        rotate([90, 0, 0])
            torus(handle_R, handle_r);
}
パラメータ (6)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIdbare-high_gpt-5.4-mini-e80da10fd309-2026-04-27T21-54-50-080Z
matrixIdbare-high/gpt-5.4-mini
signaturee80da10fd30991d4…
provideropenai
modelgpt-5.4-mini-2026-03-17
harnessbare
statussuccess
duration78.17s (wallclock: load + prompt eval + generation + network)
tokens168 in / 11658 out
wallclock tok/s149.1 tok/s (end-to-end)
cost$0.0350
createdAt2026-04-27T21:54:50.080Z
gitCommit9719f13cf9c1
openscadOpenSCAD version 2026.04.27

prompt

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

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