@tscircuit/footprinter 0.0.306 → 0.0.307
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 +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1831,8 +1831,8 @@ var sot363_def = base_def.extend({
|
|
|
1831
1831
|
w: z18.string().default("3.1mm"),
|
|
1832
1832
|
h: z18.string().default("2.0mm"),
|
|
1833
1833
|
p: z18.string().default("0.65mm"),
|
|
1834
|
-
pl: z18.string().default("1.
|
|
1835
|
-
pw: z18.string().default("0.
|
|
1834
|
+
pl: z18.string().default("1.03mm"),
|
|
1835
|
+
pw: z18.string().default("0.35mm"),
|
|
1836
1836
|
string: z18.string().optional()
|
|
1837
1837
|
});
|
|
1838
1838
|
var sot363 = (raw_params) => {
|
|
@@ -1898,9 +1898,9 @@ var sot363 = (raw_params) => {
|
|
|
1898
1898
|
var getSot363PadCoord = (pn, w, p, pl) => {
|
|
1899
1899
|
const padCenterOffset = w / 2 - pl / 2;
|
|
1900
1900
|
if (pn <= 3) {
|
|
1901
|
-
return { x: -
|
|
1901
|
+
return { x: -0.84, y: p - (pn - 1) * p };
|
|
1902
1902
|
}
|
|
1903
|
-
return { x:
|
|
1903
|
+
return { x: 0.84, y: -p + (pn - 4) * p };
|
|
1904
1904
|
};
|
|
1905
1905
|
|
|
1906
1906
|
// src/fn/sot886.ts
|