vibe-openscad

bare-max/claude-opus-4-7 / tier-1-mug

success tier 1

bare (claude opus 4.7)

render
bare render of tier-1-mug
loading STL…
success 5.2s · 225/345t · $0.0097
SCAD (33 lines)
// マグカップのパラメータ
outer_diameter = 80;
height = 100;
wall_thickness = 4;
bottom_thickness = 6;
handle_radius = 12;
handle_tube_radius = 6;

$fn = 100;

module mug() {
    difference() {
        // 外側の円柱
        cylinder(h = height, d = outer_diameter);
        // 内側をくり抜く
        translate([0, 0, bottom_thickness])
            cylinder(h = height - bottom_thickness + 1, d = outer_diameter - 2 * wall_thickness);
    }
}

module handle() {
    // 取手をカップの中心高さに配置
    translate([outer_diameter / 2 + handle_radius - 2, 0, height / 2])
        rotate([90, 0, 0])
            rotate_extrude()
                translate([handle_radius, 0, 0])
                    circle(r = handle_tube_radius);
}

union() {
    mug();
    handle();
}
パラメータ (6)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIdbare-max_claude-opus-4-7-cbb37a95badd-2026-04-27T20-37-58-094Z
matrixIdbare-max/claude-opus-4-7
signaturecbb37a95badd91ff…
provideranthropic
modelclaude-opus-4-7
harnessbare
statussuccess
duration5.18s (wallclock: load + prompt eval + generation + network)
tokens225 in / 345 out
wallclock tok/s66.6 tok/s (end-to-end)
cost$0.0097
createdAt2026-04-27T20:37:58.094Z
gitCommit8910365a8146
openscadOpenSCAD version 2026.04.27

prompt

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

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