Specifies the beginning of contour. If the previous verb was a "move" verb, then this just replaces the point value of that move, otherwise it appends a new "move" verb to the builder using the point. Thus, each contour can only have 1 move verb in it (the last one specified). @param
(float x, float y)
| 293 | * @return reference to PathBuilder |
| 294 | */ |
| 295 | @NotNull @Contract("_, _ -> this") |
| 296 | public PathBuilder moveTo(float x, float y) { |
| 297 | Stats.onNativeCall(); |
| 298 | _nMoveTo(_ptr, x, y); |
| 299 | return this; |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * <p>Specifies the beginning of contour. If the previous verb was a "move" |