Lines Matching refs:otherPath
306 let otherPath = ...;
307 let clone = PathKit.NewPath(otherPath);
310 // Users can also do let clone = new PathKit.SkPath(otherPath);
311 // or let clone = otherPath.copy();
359 #### `addPath(otherPath)` ####
360 **otherPath** - `SkPath`, a path to append to this path
364 #### `addPath(otherPath, transform)` ####
365 **otherPath** - `SkPath`, a path to append to this path. <br>
367 a transform to apply to otherPath before appending it.
373 #### `addPath(otherPath, a, b, c, d, e, f)` ####
374 **otherPath** - `SkPath`, a path to append to this path. <br>
377 which define the transform to apply to otherPath before appending it.
399 #### `addPath(otherPath, scaleX, skewX, transX, skewY, scaleY, transY, pers0, pers1, pers2)` ####
400 **otherPath** - `SkPath`, a path to append to this path. <br>
404 which define the transform to apply to otherPath before appending it.
514 #### `equals(otherPath)` ####
515 **otherPath** - `SkPath`, the path to compare to.
518 to **otherPath**.
560 #### `op(otherPath, operation)` ####
561 **otherPath** - `SkPath`, The other path to be combined with `this`. <br>
564 Combines otherPath into `this` path with the given operation and returns `this`