@aurigma/text-whizz
Advanced tools
Comparing version 1.6.31 to 1.6.36
{ | ||
"version": "1.6.31", | ||
"version": "1.6.36", | ||
"name": "@aurigma/text-whizz", | ||
@@ -4,0 +4,0 @@ "license": "SEE LICENSE IN License.md", |
@@ -608,2 +608,18 @@ declare module "@aurigma/text-whizz/TextWhizzJS" { | ||
/** | ||
* Detects if the point is inside of the path. | ||
* @param x coordinate x. | ||
* @param y coordinate y. | ||
* @returns true if the point is inside | ||
*/ | ||
isInside(x: number, y: number) : boolean; | ||
/** | ||
* Get clothest distance from the point to the path outline. | ||
* @param x coordinate x. | ||
* @param y coordinate y. | ||
* @returns distance | ||
*/ | ||
getDistanceToOutline(x: number, y: number) : number; | ||
static xor(path1: Path, path2: Path): Path; | ||
@@ -610,0 +626,0 @@ static intersect(path1: Path, path2: Path): Path; |
Sorry, the diff of this file is too big to display
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
3232460
1744