The pop() function restores the previous drawing style settings and transformations after push() has changed them. 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 is st
()
| 12658 | * @see PGraphics#push() |
| 12659 | */ |
| 12660 | public void pop() { |
| 12661 | if (recorder != null) recorder.pop(); |
| 12662 | g.pop(); |
| 12663 | } |
| 12664 | |
| 12665 | |
| 12666 | /** |
no outgoing calls
no test coverage detected