Skip to content

Commit

Permalink
restore
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaMan123 committed Mar 26, 2023
1 parent 8b921e9 commit f212e44
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/shapes/Group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -830,9 +830,20 @@ export class Group extends createCollectionMixin(
resolveOrigin(this.originY)
),
size = new Point(width, height),
strokeWidthVector = new Point(),
sizeAfter = new Point(width, height),
bboxSizeAfter = new Point(w, h),
strokeWidthVector = this._getTransformedDimensions({
width: 0,
height: 0,
}),
sizeAfter = this._getTransformedDimensions({
width: width,
height: height,
strokeWidth: 0,
}),
bboxSizeAfter = this._getTransformedDimensions({
width: w,
height: h,
strokeWidth: 0,
}),
rotationCorrection = new Point(0, 0);

// calculate center and correction
Expand Down

0 comments on commit f212e44

Please sign in to comment.