Offsets Point array by (dx, dy). Path is replaced by offset data. @param dx offset added to Point array x-axis coordinates @param dy offset added to Point array y-axis coordinates @return this
(float dx, float dy)
| 1616 | * @return this |
| 1617 | */ |
| 1618 | public Path offset(float dx, float dy) { |
| 1619 | return offset(dx, dy, null); |
| 1620 | } |
| 1621 | |
| 1622 | /** |
| 1623 | * Offsets Point array by (dx, dy). Offset Path replaces dst. |
no test coverage detected