Reset clip region on Graphics

There’s no way to do that, and no need.

If you want to reduce the clip and then reset it, you’d do something like this:

[code]g.saveState();
g.reduceClipRegion (…);
…draw here with the reduced region
g.restoreState();

…and it’s back to normal here[/code]

1 Like