Adds a rounded rectangle to the path, as a new contour. @param rrect rounded rectangle to add @return reference to PathBuilder
(@NotNull RRect rrect)
| 1092 | * @return reference to PathBuilder |
| 1093 | */ |
| 1094 | @NotNull @Contract("_ -> this") |
| 1095 | public PathBuilder addRRect(@NotNull RRect rrect) { |
| 1096 | return addRRect(rrect, PathDirection.COUNTER_CLOCKWISE); |
| 1097 | } |
| 1098 | |
| 1099 | /** |
| 1100 | * Adds a rounded rectangle to the path, as a new contour, with the specified winding direction. |