@tscircuit/core 0.0.85 → 0.0.87
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 +22 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2344,6 +2344,21 @@ var mergeRoutes = (routes) => {
|
|
|
2344
2344
|
merged.push(...next_route.reverse());
|
|
2345
2345
|
}
|
|
2346
2346
|
}
|
|
2347
|
+
for (let i = 1; i < merged.length - 1; i++) {
|
|
2348
|
+
const lastPoint = merged[i - 1];
|
|
2349
|
+
const currentPoint = merged[i];
|
|
2350
|
+
if (lastPoint.route_type !== "wire") continue;
|
|
2351
|
+
if (currentPoint.route_type !== "wire") continue;
|
|
2352
|
+
if (lastPoint.layer !== currentPoint.layer) {
|
|
2353
|
+
merged.splice(i, 0, {
|
|
2354
|
+
x: lastPoint.x,
|
|
2355
|
+
y: lastPoint.y,
|
|
2356
|
+
from_layer: lastPoint.layer,
|
|
2357
|
+
to_layer: currentPoint.layer,
|
|
2358
|
+
route_type: "via"
|
|
2359
|
+
});
|
|
2360
|
+
}
|
|
2361
|
+
}
|
|
2347
2362
|
return merged;
|
|
2348
2363
|
};
|
|
2349
2364
|
|
|
@@ -2729,6 +2744,13 @@ searched component ${targetComponent.getString()}, which has ports: ${targetComp
|
|
|
2729
2744
|
return p;
|
|
2730
2745
|
});
|
|
2731
2746
|
}
|
|
2747
|
+
if (pcbPortA && trace.route[0].route_type === "wire") {
|
|
2748
|
+
trace.route[0].start_pcb_port_id = pcbPortA;
|
|
2749
|
+
}
|
|
2750
|
+
const lastRoutePoint = trace.route[trace.route.length - 1];
|
|
2751
|
+
if (pcbPortB && lastRoutePoint.route_type === "wire") {
|
|
2752
|
+
lastRoutePoint.end_pcb_port_id = pcbPortB;
|
|
2753
|
+
}
|
|
2732
2754
|
routes.push(trace.route);
|
|
2733
2755
|
}
|
|
2734
2756
|
const mergedRoute = mergeRoutes(routes);
|