( begin auto-generated from translate.xml ) 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
(float x, float y)
| 13480 | * @see PGraphics#scale(float, float, float) |
| 13481 | */ |
| 13482 | public void translate(float x, float y) { |
| 13483 | if (recorder != null) recorder.translate(x, y); |
| 13484 | g.translate(x, y); |
| 13485 | } |
| 13486 | |
| 13487 | |
| 13488 | /** |