Specifies an amount to displace objects within the display window. The x parameter specifies left/right translation, the y parameter specifies up/down translation, and the z parameter specifies translations toward/away from the screen. Using this function with the z param
(float x, float y)
| 12737 | * @see PGraphics#scale(float, float, float) |
| 12738 | */ |
| 12739 | public void translate(float x, float y) { |
| 12740 | if (recorder != null) recorder.translate(x, y); |
| 12741 | g.translate(x, y); |
| 12742 | } |
| 12743 | |
| 12744 | |
| 12745 | /** |