vibe-openscad

bare-low/claude-opus-4-8 / tier-1-stepped-pyramid

success tier 1

bare (claude opus 4.8)

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

// 1段目: 60 x 60 x 10
translate([0, 0, 0])
    cube([60, 60, 10], center=true);

// 2段目: 40 x 40 x 10
translate([0, 0, 10])
    cube([40, 40, 10], center=true);

// 3段目: 20 x 20 x 10
translate([0, 0, 20])
    cube([20, 20, 10], center=true);

meta

runIdbare-low_claude-opus-4-8-d4f5a25cf7d7-2026-06-09T17-37-57-261Z
matrixIdbare-low/claude-opus-4-8
signatured4f5a25cf7d7bcf6…
provideranthropic
modelclaude-opus-4-8
harnessbare
statussuccess
duration3.22s (wallclock: load + prompt eval + generation + network)
tokens198 in / 179 out
wallclock tok/s55.6 tok/s (end-to-end)
cost$0.0055
createdAt2026-06-09T17:37:57.261Z
gitCommitc8a77106d384
openscadOpenSCAD version 2026.04.27

prompt

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

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