Lines Matching refs:otherPath
321 let otherPath = ...;
322 let clone = PathKit.NewPath(otherPath);
325 // Users can also do let clone = new PathKit.SkPath(otherPath);
326 // or let clone = otherPath.copy();
377 #### `addPath(otherPath)`
379 **otherPath** - `SkPath`, a path to append to this path
383 #### `addPath(otherPath, transform)`
385 **otherPath** - `SkPath`, a path to append to this path. <br> **transform** -
387 transform to apply to otherPath before appending it.
394 #### `addPath(otherPath, a, b, c, d, e, f)`
396 **otherPath** - `SkPath`, a path to append to this path. <br> **a, b, c, d, e,
399 define the transform to apply to otherPath before appending it.
422 #### `addPath(otherPath, scaleX, skewX, transX, skewY, scaleY, transY, pers0, pers1, pers2)`
424 **otherPath** - `SkPath`, a path to append to this path. <br> **scaleX, skewX,
428 which define the transform to apply to otherPath before appending it.
550 #### `equals(otherPath)`
552 **otherPath** - `SkPath`, the path to compare to.
554 Returns a `Boolean` value based on if `this` path is equal to **otherPath**.
601 #### `op(otherPath, operation)`
603 **otherPath** - `SkPath`, The other path to be combined with `this`. <br>
606 Combines otherPath into `this` path with the given operation and returns `this`