easyeda 0.0.230 → 0.0.231

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.
@@ -68,7 +68,7 @@ import {
68
68
  translate,
69
69
  unknown_error_finding_part,
70
70
  voltage
71
- } from "./chunk-6S7LH5YP.js";
71
+ } from "./chunk-U5UUPCU3.js";
72
72
 
73
73
  // node_modules/ms/index.js
74
74
  var require_ms = __commonJS({
@@ -80630,7 +80630,9 @@ var convertEasyEdaJsonToCircuitJson = (easyEdaJson, { useModelCdn, shouldRecente
80630
80630
  if (e2.type === "pcb_cutout") {
80631
80631
  if (e2.shape === "polygon") {
80632
80632
  e2.points = e2.points.map((p2) => applyToPoint(matrix2, p2));
80633
- } else {
80633
+ } else if (e2.shape === "path") {
80634
+ e2.route = e2.route.map((p2) => applyToPoint(matrix2, p2));
80635
+ } else if (e2.shape === "circle" || e2.shape === "rect") {
80634
80636
  e2.center = applyToPoint(matrix2, e2.center);
80635
80637
  }
80636
80638
  } else if (e2.type === "pcb_smtpad" && e2.shape === "polygon") {