Lines Matching refs:PathOp
110 .op(orig, PathKit.PathOp.DIFFERENCE);
120 .op(simplified, PathKit.PathOp.REVERSE_DIFFERENCE);
244 …PathOp.INTERSECT)` will set path1 to be the area represented by where path1 and path2 overlap (int…
316 **op** - `PathOp`, an op to apply
318 Returns a new `SkPath` that is the result of applying the given PathOp to the first and second
325 let mountains = PathKit.MakeFromOp(pathOne, pathTwo, PathKit.PathOp.UNION);
327 // Users can also do pathOne.op(pathTwo, PathKit.PathOp.UNION);
562 **operation** - `PathOp`, The operation to apply to the two paths.
572 let mountains = pathOne.copy().op(pathOne, pathTwo, PathKit.PathOp.UNION);
574 pathOne.op(pathOne, pathTwo, PathKit.PathOp.INTERSECT);
616 let grow = box.copy().stroke({width: 20}).op(box, PathKit.PathOp.DIFFERENCE);
620 .op(simplified, PathKit.PathOp.REVERSE_DIFFERENCE);
720 **operation** - `PathOp`, The operation to apply to the two paths.
758 ### PathOp (enum) ###
762 - `PathKit.PathOp.DIFFERENCE`
763 - `PathKit.PathOp.INTERSECT`
764 - `PathKit.PathOp.REVERSE_DIFFERENCE`
765 - `PathKit.PathOp.UNION`
766 - `PathKit.PathOp.XOR`