Adds rrect to Path, creating a new closed contour. RRect starts at top-left of the lower-left corner and winds clockwise. After appending, Path may be empty, or may contain: Rect, Oval, or RRect. @param rrect bounds and radii of rounded rectangle @return reference to Path @se
(RRect rrect)
| 1395 | * @see <a href="https://fiddle.skia.org/c/@Path_addRRect">https://fiddle.skia.org/c/@Path_addRRect</a> |
| 1396 | */ |
| 1397 | public Path addRRect(RRect rrect) { |
| 1398 | return addRRect(rrect, PathDirection.CLOCKWISE, 6); |
| 1399 | } |
| 1400 | |
| 1401 | /** |
| 1402 | * <p>Adds rrect to Path, creating a new closed contour. If |