@tscircuit/footprinter 0.0.133 → 0.0.134

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3470,8 +3470,8 @@ var to220 = (raw_params) => {
3470
3470
  const holeY = -1;
3471
3471
  const halfWidth = w / 2;
3472
3472
  const halfHeight = h / 2;
3473
- const maxHoleWidth = w * 0.6;
3474
- const minPitch = 1.5;
3473
+ const minPitch = 2.5;
3474
+ const maxHoleWidth = w * 0.4;
3475
3475
  const computedPitch = Math.max(minPitch, maxHoleWidth / (numPins - 1));
3476
3476
  const plated_holes = Array.from({ length: numPins }, (_, i) => {
3477
3477
  const x = numPins % 2 === 0 ? (i - numPins / 2 + 0.5) * computedPitch : (i - Math.floor(numPins / 2)) * computedPitch;