()
| 711 | } |
| 712 | |
| 713 | protected void toggleAntiAlias() { |
| 714 | int newAntialias = number != 0 ? number : (antialias == 8 ? 0 : 8); |
| 715 | if (newAntialias - antialias == 0) |
| 716 | return; |
| 717 | |
| 718 | antialias = newAntialias; |
| 719 | render(); |
| 720 | } |
| 721 | |
| 722 | protected void toggleICC() { |
| 723 | icc = !icc; |