vibe-openscad

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

success tier 2

bare (claude opus 4.8)

render
bare render of tier-2-hex-bolt
loading STL…
success 4.9s · 260/316t · $0.0092
SCAD (22 lines)
// M8 Hex Bolt (simplified, no threads)
// Head: hex prism, across-flats = 13mm, height = 5.3mm
// Shank: cylinder, diameter = 8mm, length = 30mm
// Head bottom at z=0, shank extends to z<0

$fn = 100;

across_flats = 13;
head_height = 5.3;
shank_diameter = 8;
shank_length = 30;

// across-flats to circumscribed circle radius for hexagon
// width across flats = sqrt(3) * r  =>  r = af / sqrt(3)
hex_radius = across_flats / sqrt(3);

// Head: hexagonal prism above z=0
cylinder(h = head_height, r = hex_radius, $fn = 6);

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

meta

runIdbare-max_claude-opus-4-8-4f009f0031c2-2026-06-09T17-38-41-173Z
matrixIdbare-max/claude-opus-4-8
signature4f009f0031c25245…
provideranthropic
modelclaude-opus-4-8
harnessbare
statussuccess
duration4.94s (wallclock: load + prompt eval + generation + network)
tokens260 in / 316 out
wallclock tok/s64.0 tok/s (end-to-end)
cost$0.0092
createdAt2026-06-09T17:38:41.173Z
gitCommitc8a77106d384
openscadOpenSCAD version 2026.04.27

prompt

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

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

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