vibe-openscad

iter-png-2/claude-sonnet-4-6 / tier-3-butt-hinge

success tier 3

bare (claude sonnet 4.6)

render
bare render of tier-3-butt-hinge
loading STL…
success 31.2s · 3200/2294t · $0.0440
SCAD (159 lines)
// Butt Hinge - 180° open position
// Pin axis along Y, leaves extend in -X and +X directions

$fn = 64;

// Parameters
leaf_width  = 25;   // X extent of flat plate portion
leaf_length = 30;   // Y direction (along pin)
leaf_thick  = 2;    // Z thickness

pin_dia     = 4;
pin_r       = pin_dia / 2;
pin_length  = 32;   // 1mm overhang each end

knuckle_od  = 8;
knuckle_or  = knuckle_od / 2;   // 4mm
knuckle_id  = pin_dia + 0.3;    // 4.3mm clearance bore
knuckle_ir  = knuckle_id / 2;
knuckle_h   = 6;                 // each knuckle height

// Knuckle Y centres (each segment 6mm, centres at 3,9,15,21,27)
// Left leaf  (3 knuckles): segments 0,2,4 → Y centres 3, 15, 27
// Right leaf (2 knuckles): segments 1,3   → Y centres 9, 21
left_knuckle_y  = [3, 15, 27];
right_knuckle_y = [9, 21];

// Knuckle protrudes above the plate surface (Z=0).
// Knuckle axis (pin centre) is at Z = knuckle_or = 4mm above plate top face.
// So knuckle occupies Z = 0 to Z = knuckle_od = 8mm (diameter).
// The leaf plate sits at Z = -leaf_thick to Z = 0.
// A fillet block fills between plate top (Z=0) and knuckle bottom tangent line.
knuckle_z = knuckle_or;   // pin axis height above plate top face

// Screw holes (M3 countersunk)
screw_cs_dia   = 6;
screw_cs_depth = 1;
screw_thru_dia = 3.2;
screw_count    = 3;
screw_pitch    = 8;

function screw_y(i) =
    (leaf_length - (screw_count - 1) * screw_pitch) / 2 + i * screw_pitch;

// ─────────────────────────────────────────────
// Single knuckle tube, axis along Y
// Placed so axis is at [0, yc, knuckle_z]
module knuckle_tube(yc) {
    translate([0, yc, knuckle_z])
        rotate([90, 0, 0])
            difference() {
                cylinder(h = knuckle_h, r = knuckle_or, center = true);
                cylinder(h = knuckle_h + 0.02, r = knuckle_ir, center = true);
            }
}

// Fillet/web block connecting knuckle base to plate surface
// A square-ish block that fills the gap between the cylinder and the flat plate
module knuckle_base_fill(yc) {
    translate([0, yc, 0])
        rotate([90, 0, 0])
            // Hull between a rectangle at Z=0 and the cylinder cross-section
            linear_extrude(height = knuckle_h, center = true)
                hull() {
                    // plate-level footprint (thin rectangle)
                    translate([0, 0, 0])
                        square([knuckle_od, 0.01], center = true);
                    // knuckle circle at its axis height
                    translate([0, knuckle_z, 0])
                        circle(r = knuckle_or);
                }
}

// ─────────────────────────────────────────────
// Countersunk hole: top surface at Z=0, going downward
module cs_hole() {
    union() {
        // countersink taper
        translate([0, 0, -screw_cs_depth])
            cylinder(h = screw_cs_depth + 0.01,
                     r1 = screw_thru_dia / 2,
                     r2 = screw_cs_dia / 2);
        // through hole
        translate([0, 0, -(leaf_thick + 0.01)])
            cylinder(h = leaf_thick - screw_cs_depth + 0.02,
                     r = screw_thru_dia / 2);
    }
}

// ─────────────────────────────────────────────
// Left leaf: plate extends in -X direction
module left_leaf() {
    difference() {
        union() {
            // Flat plate
            translate([-leaf_width, 0, -leaf_thick])
                cube([leaf_width, leaf_length, leaf_thick]);

            // Knuckles with base fills
            for (yc = left_knuckle_y) {
                knuckle_tube(yc);
                knuckle_base_fill(yc);
            }
        }

        // Countersunk screw holes
        for (i = [0 : screw_count - 1]) {
            translate([-leaf_width / 2, screw_y(i), 0])
                cs_hole();
        }

        // Pin bore through all knuckle positions along Y
        translate([0, -1, knuckle_z])
            rotate([-90, 0, 0])
                cylinder(h = pin_length + 2, r = knuckle_ir);
    }
}

// ─────────────────────────────────────────────
// Right leaf: plate extends in +X direction
module right_leaf() {
    difference() {
        union() {
            // Flat plate
            translate([0, 0, -leaf_thick])
                cube([leaf_width, leaf_length, leaf_thick]);

            // Knuckles with base fills
            for (yc = right_knuckle_y) {
                knuckle_tube(yc);
                knuckle_base_fill(yc);
            }
        }

        // Countersunk screw holes
        for (i = [0 : screw_count - 1]) {
            translate([leaf_width / 2, screw_y(i), 0])
                cs_hole();
        }

        // Pin bore
        translate([0, -1, knuckle_z])
            rotate([-90, 0, 0])
                cylinder(h = pin_length + 2, r = knuckle_ir);
    }
}

// ─────────────────────────────────────────────
// Pin: Y from -1 to +31 (1mm overhang each end beyond 0..30)
module pin() {
    translate([0, -1, knuckle_z])
        rotate([-90, 0, 0])
            cylinder(h = pin_length, r = pin_r);
}

// ─────────────────────────────────────────────
// Assembly
color([0.75, 0.75, 0.78], 1.0) left_leaf();
color([0.75, 0.75, 0.78], 1.0) right_leaf();
color([0.85, 0.70, 0.20], 1.0) pin();
パラメータ (12)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIditer-png-2_claude-sonnet-4-6-8949046f43cc-2026-04-28T17-29-56-984Z
matrixIditer-png-2/claude-sonnet-4-6
signature8949046f43cc28e9…
provideranthropic
modelclaude-sonnet-4-6
harnessbare
statussuccess
duration31.16s (wallclock: load + prompt eval + generation + network)
tokens3200 in / 2294 out
wallclock tok/s73.6 tok/s (end-to-end)
cost$0.0440
createdAt2026-04-28T17:29:56.984Z
gitCommitbe87c9f2adaf
openscadOpenSCAD version 2026.04.27

iteration chain

各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。

prompt

OpenSCAD で、家具用の小型バット蝶番(butt hinge)を作ってください。
3 つのパーツ(左板、右板、ピン軸)が組み合わさって動作する完成品を、
「開いた状態(180°)」で 1 つの SCAD ファイルに配置して出力します。

寸法と配置:
- 板(leaf)2 枚: 30mm × 25mm × 厚さ 2mm の鉄板形状
  - 縦 30mm の辺がピン軸に沿う(ヒンジ軸方向)
  - 横 25mm の辺が回転で開く方向に伸びる
- ピン軸: 直径 4mm の円柱、長さ 32mm(両端 1mm ずつ knuckle から飛び出す)
- knuckle(筒部): 縦 30mm を 5 等分(各 6mm)に区切り、左板に 3 個・右板に 2 個を
  互い違いに配置(左板は外側 2 個 + 中央 1 個、右板は中間 2 個)
- knuckle 外径 8mm、内径はピン軸 + 0.3mm クリアランス(= 4.6mm 穴)
- 左板と右板はピン軸を共有して回転可能。180° 開いた状態で、両板の
  平らな面が同一平面に来るように配置する
- 各板の knuckle から離れた側に、M3 用の皿穴を 3 個ずつ
  (穴ピッチは板の縦方向に 8mm 間隔、皿穴は表面から見て直径 6mm × 深さ 1mm
  のテーパ + 直径 3.2mm の貫通穴)

座標系:
- ピン軸の中心線を Y 軸に重ねる(ピン軸は +Y 方向)
- 板の平らな面は Z 軸に直交し、左板が x<0 側、右板が x>0 側に伸びる(180° 開)
- knuckle は X=0 を中心とし、Y 方向に 6mm ずつ並ぶ

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