calculate-packing 0.0.30 → 0.0.31
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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -385,7 +385,7 @@ declare class OutlineSegmentCandidatePointSolver extends BaseSolver {
|
|
|
385
385
|
viableOutlineSegment: [Point$3, Point$3] | null;
|
|
386
386
|
fullOutline: [Point$3, Point$3][];
|
|
387
387
|
componentRotationDegrees: number;
|
|
388
|
-
packStrategy:
|
|
388
|
+
packStrategy: PackPlacementStrategy;
|
|
389
389
|
minGap: number;
|
|
390
390
|
packedComponents: PackedComponent[];
|
|
391
391
|
componentToPack: InputComponent;
|
|
@@ -397,7 +397,7 @@ declare class OutlineSegmentCandidatePointSolver extends BaseSolver {
|
|
|
397
397
|
outlineSegment: [Point$3, Point$3];
|
|
398
398
|
fullOutline: [Point$3, Point$3][];
|
|
399
399
|
componentRotationDegrees: number;
|
|
400
|
-
packStrategy:
|
|
400
|
+
packStrategy: PackPlacementStrategy;
|
|
401
401
|
minGap: number;
|
|
402
402
|
packedComponents: PackedComponent[];
|
|
403
403
|
componentToPack: InputComponent;
|
package/dist/index.js
CHANGED
|
@@ -3137,7 +3137,7 @@ var SingleComponentPackSolver = class extends BaseSolver {
|
|
|
3137
3137
|
outlineSegment: queuedSegment.segment,
|
|
3138
3138
|
fullOutline: queuedSegment.fullOutline,
|
|
3139
3139
|
componentRotationDegrees: rotation,
|
|
3140
|
-
packStrategy: this.packPlacementStrategy
|
|
3140
|
+
packStrategy: this.packPlacementStrategy,
|
|
3141
3141
|
minGap: this.minGap,
|
|
3142
3142
|
packedComponents: this.packedComponents,
|
|
3143
3143
|
componentToPack: this.componentToPack
|
package/package.json
CHANGED