Offsets all points in the builder by (dx, dy). @param dx x-axis offset @param dy y-axis offset @return reference to PathBuilder
(float dx, float dy)
| 1374 | * @return reference to PathBuilder |
| 1375 | */ |
| 1376 | @NotNull @Contract("_, _ -> this") |
| 1377 | public PathBuilder offset(float dx, float dy) { |
| 1378 | Stats.onNativeCall(); |
| 1379 | _nOffset(_ptr, dx, dy); |
| 1380 | return this; |
| 1381 | } |
| 1382 | |
| 1383 | /** |
| 1384 | * Offsets all points in the builder. |
no test coverage detected