@tscircuit/footprinter 0.0.14 → 0.0.16

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/footprinter",
3
3
  "type": "module",
4
- "version": "0.0.14",
4
+ "version": "0.0.16",
5
5
  "description": "",
6
6
  "main": "dist/index.cjs",
7
7
  "scripts": {
package/src/fn/quad.ts CHANGED
@@ -117,7 +117,7 @@ export const quad = (raw_params: {
117
117
  ;[pw, pl] = [pl, pw]
118
118
  }
119
119
 
120
- const pn = getQuadPinMap(params)[i + 1]
120
+ const pn = pin_map[i + 1]
121
121
  pads.push(rectpad(pn!, x, y, pw, pl))
122
122
  }
123
123
  return pads
@@ -21,7 +21,8 @@ import type { PinOrderSpecifier } from "./zod/pin-order-specifier"
21
21
  * 7 -> 3
22
22
  * 8 -> 2
23
23
  *
24
- * Which allows us to create the CW version of the package:
24
+ * Which allows us to create the CW version of the package using...
25
+ * new_pin = pin_map[old_pin]
25
26
  *
26
27
  * 2 3
27
28
  * 1 4