Lines Matching refs:otherPath
305 let otherPath = ...;
306 let clone = PathKit.NewPath(otherPath);
309 // Users can also do let clone = new PathKit.SkPath(otherPath);
310 // or let clone = otherPath.copy();
358 #### `addPath(otherPath)` ####
359 **otherPath** - `SkPath`, a path to append to this path
363 #### `addPath(otherPath, transform)` ####
364 **otherPath** - `SkPath`, a path to append to this path. <br>
366 a transform to apply to otherPath before appending it.
372 #### `addPath(otherPath, a, b, c, d, e, f)` ####
373 **otherPath** - `SkPath`, a path to append to this path. <br>
376 which define the transform to apply to otherPath before appending it.
398 #### `addPath(otherPath, scaleX, skewX, transX, skewY, scaleY, transY, pers0, pers1, pers2)` ####
399 **otherPath** - `SkPath`, a path to append to this path. <br>
403 which define the transform to apply to otherPath before appending it.
513 #### `equals(otherPath)` ####
514 **otherPath** - `SkPath`, the path to compare to.
517 to **otherPath**.
559 #### `op(otherPath, operation)` ####
560 **otherPath** - `SkPath`, The other path to be combined with `this`. <br>
563 Combines otherPath into `this` path with the given operation and returns `this`