@tscircuit/capacity-autorouter 0.0.561 → 0.0.562
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.d.ts +10 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -296,6 +296,7 @@ type HighDensityIntraNodeRoute$1 = {
|
|
|
296
296
|
x: number;
|
|
297
297
|
y: number;
|
|
298
298
|
z: number;
|
|
299
|
+
traceThickness?: number;
|
|
299
300
|
insideJumperPad?: boolean;
|
|
300
301
|
toNextSegmentType?: "through_obstacle";
|
|
301
302
|
}>;
|
|
@@ -2582,6 +2583,15 @@ declare class TraceWidthSolver extends BaseSolver {
|
|
|
2582
2583
|
* Also updates lastCollidingObstacles and lastCollidingRoutes for visualization
|
|
2583
2584
|
*/
|
|
2584
2585
|
private getClearanceAtPosition;
|
|
2586
|
+
private isObstacleOnPointLayer;
|
|
2587
|
+
private getAdjacentNonCoincidentRoutePoint;
|
|
2588
|
+
private getObstacleWidthAlongVector;
|
|
2589
|
+
private getTerminalPadWidthLimit;
|
|
2590
|
+
private getRouteDistanceInfo;
|
|
2591
|
+
private interpolateRoutePointAtDistance;
|
|
2592
|
+
private getTaperWidthAtDistance;
|
|
2593
|
+
private createTerminalTaperedRoute;
|
|
2594
|
+
private createRouteWithWidth;
|
|
2585
2595
|
/**
|
|
2586
2596
|
* Finalizes the current trace with the given width
|
|
2587
2597
|
*/
|