circuit-json-to-kicad 0.0.13 → 0.0.14
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -917,8 +917,8 @@ var CircuitJsonToKicadSchConverter = class {
|
|
|
917
917
|
}
|
|
918
918
|
constructor(circuitJson) {
|
|
919
919
|
const CIRCUIT_JSON_SCALE_FACTOR = 15;
|
|
920
|
-
const
|
|
921
|
-
const
|
|
920
|
+
const KICAD_CENTER_Y = 105;
|
|
921
|
+
const KICAD_CENTER_X = 148.5;
|
|
922
922
|
const db = cju(circuitJson);
|
|
923
923
|
const { center } = getSchematicBoundsAndCenter(db);
|
|
924
924
|
this.ctx = {
|