The push() function saves the current drawing style settings and transformations, while pop() restores these settings. Note that these functions are always used together. They allow you to change the style and transformation settings and later return to what you had. When a new state i
()
| 12621 | * @see PGraphics#pop() |
| 12622 | */ |
| 12623 | public void push() { |
| 12624 | if (recorder != null) recorder.push(); |
| 12625 | g.push(); |
| 12626 | } |
| 12627 | |
| 12628 | |
| 12629 | /** |
no outgoing calls
no test coverage detected