@aurigma/design-atoms-model
Advanced tools
Comparing version 7.0.7 to 7.0.8
@@ -50,2 +50,3 @@ import { RectangleF } from "./RectangleF"; | ||
transformByMatrix(matrix: Matrix, deltaAngle?: number): RotatedRectangleF; | ||
withoutAngle(): RotatedRectangleF; | ||
static union(a: RotatedRectangleF, b: RotatedRectangleF): RotatedRectangleF; | ||
@@ -52,0 +53,0 @@ static fromRectangleF(rectangle: RectangleF, angle?: number): RotatedRectangleF; |
@@ -266,2 +266,5 @@ import { RectangleF } from "./RectangleF"; | ||
}; | ||
RotatedRectangleF.prototype.withoutAngle = function () { | ||
return new RotatedRectangleF(this.centerX, this.centerY, this.width, this.height, 0); | ||
}; | ||
RotatedRectangleF.union = function (a, b) { | ||
@@ -268,0 +271,0 @@ var aClone = a.clone(); |
{ | ||
"version": "7.0.7", | ||
"version": "7.0.8", | ||
"name": "@aurigma/design-atoms-model", | ||
@@ -4,0 +4,0 @@ "license": "SEE LICENSE IN License.md", |
/** @hidden */ | ||
/** Don't include in docs */ | ||
export declare const MODELVERSION = "7.0.7"; | ||
export declare const MODELVERSION = "7.0.8"; |
/** @hidden */ | ||
/** Don't include in docs */ | ||
export var MODELVERSION = "7.0.7"; | ||
export var MODELVERSION = "7.0.8"; | ||
//# sourceMappingURL=Version.js.map |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1313705
19782