Lines Matching refs:PathOp
115 .op(orig, PathKit.PathOp.DIFFERENCE);
125 .op(simplified, PathKit.PathOp.REVERSE_DIFFERENCE);
251 example, `path1.op(path2, PathKit.PathOp.INTERSECT)` will set path1 to be the
253 `PathKit.MakeFromOp(path1, path2, PathKit.PathOp.INTERSECT)` will do the same
331 **op** - `PathOp`, an op to apply
333 Returns a new `SkPath` that is the result of applying the given PathOp to the
340 let mountains = PathKit.MakeFromOp(pathOne, pathTwo, PathKit.PathOp.UNION);
342 // Users can also do pathOne.op(pathTwo, PathKit.PathOp.UNION);
604 **operation** - `PathOp`, The operation to apply to the two paths.
614 let mountains = pathOne.copy().op(pathOne, pathTwo, PathKit.PathOp.UNION);
616 pathOne.op(pathOne, pathTwo, PathKit.PathOp.INTERSECT);
665 let grow = box.copy().stroke({width: 20}).op(box, PathKit.PathOp.DIFFERENCE);
669 .op(simplified, PathKit.PathOp.REVERSE_DIFFERENCE);
776 **operation** - `PathOp`, The operation to apply to the two paths.
818 ### PathOp (enum)
823 - `PathKit.PathOp.DIFFERENCE`
824 - `PathKit.PathOp.INTERSECT`
825 - `PathKit.PathOp.REVERSE_DIFFERENCE`
826 - `PathKit.PathOp.UNION`
827 - `PathKit.PathOp.XOR`