Intersects the current clip with the specified rectangle.
(int x, int y, int width, int height)
| 946 | * Intersects the current clip with the specified rectangle. |
| 947 | */ |
| 948 | @Override |
| 949 | public void clipRect(int x, int y, int width, int height) { |
| 950 | clip(new Rectangle(x, y, width, height)); |
| 951 | } |
| 952 | |
| 953 | /** |
| 954 | * Sets the current clip to the rectangle specified by the given |