vibe-openscad

bare-max/claude-opus-4-7 / tier-1-stepped-pyramid

success tier 1

bare (claude opus 4.7)

render
bare render of tier-1-stepped-pyramid
loading STL…
success 2.9s · 203/203t · $0.0061
SCAD (14 lines)
// 3段の階段状ピラミッド
// 各段は中心を揃えて積み上げる

// 1段目: 60mm × 60mm × 高さ10mm
translate([0, 0, 0])
    cube([60, 60, 10], center = true);

// 2段目: 40mm × 40mm × 高さ10mm
translate([0, 0, 10])
    cube([40, 40, 10], center = true);

// 3段目: 20mm × 20mm × 高さ10mm
translate([0, 0, 20])
    cube([20, 20, 10], center = true);

meta

runIdbare-max_claude-opus-4-7-f455d2afa74a-2026-04-27T20-37-52-901Z
matrixIdbare-max/claude-opus-4-7
signaturef455d2afa74a59db…
provideranthropic
modelclaude-opus-4-7
harnessbare
statussuccess
duration2.94s (wallclock: load + prompt eval + generation + network)
tokens203 in / 203 out
wallclock tok/s69.0 tok/s (end-to-end)
cost$0.0061
createdAt2026-04-27T20:37:52.901Z
gitCommit8910365a8146
openscadOpenSCAD version 2026.04.27

prompt

OpenSCAD で、底辺 60mm × 60mm × 高さ 10mm の正方形の板の中央に、それより一回り小さい
40mm × 40mm × 高さ 10mm の板を載せ、さらにその中央に 20mm × 20mm × 高さ 10mm の板を
載せた、3 段の階段状ピラミッドを作ってください。各段は中心を揃えて積み上げます。

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