vibe-openscad

bare-max/claude-opus-4-7 / tier-2-hex-bolt

success tier 2

bare (claude opus 4.7)

render
bare render of tier-2-hex-bolt
loading STL…
success 4.6s · 267/278t · $0.0083
SCAD (21 lines)
// M8 Hex Bolt (ISO standard, simplified without thread)
// Head: hex prism, across-flats 13mm, height 5.3mm
// Shank: cylinder, diameter 8mm, length 30mm

$fn = 64;

// Head dimensions
head_af = 13;        // across-flats distance
head_height = 5.3;   // head height

// Shank dimensions
shank_diameter = 8;
shank_length = 30;

// Hex head (centered, bottom at z=0)
translate([0, 0, 0])
    cylinder(h = head_height, r = head_af / sqrt(3), $fn = 6);

// Shank (extends in -Z direction)
translate([0, 0, -shank_length])
    cylinder(h = shank_length, d = shank_diameter);
パラメータ (4)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIdbare-max_claude-opus-4-7-2f33c13a238d-2026-04-28T18-47-36-917Z
matrixIdbare-max/claude-opus-4-7
signature2f33c13a238d1b4b…
provideranthropic
modelclaude-opus-4-7
harnessbare
statussuccess
duration4.65s (wallclock: load + prompt eval + generation + network)
tokens267 in / 278 out
wallclock tok/s59.8 tok/s (end-to-end)
cost$0.0083
createdAt2026-04-28T18:47:36.917Z
gitCommit781e6c683dda
openscadOpenSCAD version 2026.04.27

prompt

OpenSCAD で、規格に準じた M8 サイズの六角ボルトを作ってください。
ねじ山自体は省略してよく、円柱のシャンクで構いません。

寸法は以下に従ってください:
- 頭部は六角柱で、対辺距離(across-flats)13mm、高さ 5.3mm
- シャンク(軸部)は直径 8mm、長さ 30mm の円柱
- ボルト全体の中心軸は +Z 軸方向
- 頭部の底面が原点(z=0)に来るように配置し、シャンクは z<0 側へ伸ばす

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