iter-png-2/gemini-2.5-flash-lite / tier-3-butt-hinge
success tier 3
bare (gemini 2.5 flash-lite)
render
// Parameters
leaf_width = 25;
leaf_height = 30;
leaf_thickness = 2;
pin_diameter = 4;
pin_length = 32;
knuckle_outer_diameter = 8;
knuckle_inner_diameter = pin_diameter + 0.3;
knuckle_height = 6; // 30mm / 5 equal parts
num_knuckles_left = 3;
num_knuckles_right = 2;
m3_countersink_diameter = 6;
m3_countersink_depth = 1;
m3_hole_diameter = 3.2;
m3_hole_spacing = 8;
module pin() {
cylinder(h = pin_length, d = pin_diameter, center = true);
}
module knuckle(side) {
difference() {
cylinder(h = knuckle_height, d = knuckle_outer_diameter, center = true);
cylinder(h = knuckle_height + 0.1, d = knuckle_inner_diameter, center = true); // +0.1 to ensure clean cut
}
}
// Helper module for creating a conical void
module conical_void(depth, d1, d2) {
hull() {
circle(d = d1);
translate([depth, 0, 0]) circle(d = d2);
}
}
module m3_countersink(side) {
// The countersink void is created on the outer face of the leaf.
// The current coordinate system has X-axis pointing outwards from the leaf face.
// Frustum part of the countersink
conical_void(m3_countersink_depth, m3_countersink_diameter, m3_hole_diameter);
// Cylinder part for the through hole
// This cylinder starts where the frustum ends.
translate([m3_countersink_depth, 0, 0]) {
cylinder(h = leaf_thickness - m3_countersink_depth, d = m3_hole_diameter, center = false);
}
}
module leaf(side) {
// Base leaf shape
cube([leaf_thickness, leaf_width, leaf_height], center = true);
// Mount holes
// Position for mount holes along the leaf's height.
// The leaf is centered at Y=0 and extends from -leaf_width/2 to leaf_width/2.
// The height is along the Z-axis.
// The prompt states "板の縦方向に 8mm 間隔" -> this refers to the leaf's height (30mm).
// The current leaf shape is oriented with its 30mm dimension along the Z-axis.
// The knuckles are along the Y-axis.
// So the holes are on the flat face (YZ plane).
// The positions should be along the Z-axis.
// Leaf height is 30mm, centered at Z=0. So from -15 to 15.
// Holes at -m3_hole_spacing, 0, m3_hole_spacing.
// This is relative to the center of the leaf.
// The mount holes are on the surface of the leaf, so we need to translate them to the face.
// The X-position of the face is `side * leaf_thickness / 2`.
// Corrected positioning of mount holes:
translate([side * (leaf_thickness / 2), 0, -m3_hole_spacing]) {
m3_countersink(side);
}
translate([side * (leaf_thickness / 2), 0, 0]) {
m3_countersink(side);
}
translate([side * (leaf_thickness / 2), 0, m3_hole_spacing]) {
m3_countersink(side);
}
}
// Assemble the hinge in 180 degree open state
module butt_hinge() {
// Pin
pin();
// Left knuckles and leaf plate
// Knuckle Y-positions for left leaf: [-12, 0, 12]
// These positions are relative to the center of the hinge barrel stack.
// The knuckle centers are offset from the Y-axis.
// The left knuckles are on the X < 0 side of the pin's YZ plane.
// Their X-center position is -(knuckle_outer_diameter/2).
for (i = [0 : num_knuckles_left - 1]) {
translate([-knuckle_outer_diameter/2, [-12, 0, 12][i], 0]) {
knuckle(-1); // -1 indicates left side
}
}
// Left leaf plate positioned to the outside of its knuckles.
// The leaf plate's face is aligned with the outer edge of the knuckles.
translate([-(knuckle_outer_diameter/2 + leaf_thickness/2), 0, 0]) {
leaf(-1); // -1 indicates left side
}
// Right knuckles and leaf plate
// Knuckle Y-positions for right leaf: [-6, 6]
// The right knuckles are on the X > 0 side of the pin's YZ plane.
// Their X-center position is +(knuckle_outer_diameter/2).
for (i = [0 : num_knuckles_right - 1]) {
translate([knuckle_outer_diameter/2, [-6, 6][i], 0]) {
knuckle(1); // 1 indicates right side
}
}
// Right leaf plate positioned to the outside of its knuckles.
translate([knuckle_outer_diameter/2 + leaf_thickness/2, 0, 0]) {
leaf(1); // 1 indicates right side
}
}
// Position the hinge at the origin for final rendering
translate([0, 0, 0]) {
butt_hinge();
} パラメータ (13) —
スライダを動かすと openscad-wasm で再レンダリング
iteration chain
各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。
→ children (1)
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 ... ``` のフェンスで囲んで出力してください。 コードのみで、追加の説明は不要です。