cz.cuni.jagrlib.iface
Interface RectangleWindow
- All Superinterfaces:
- Property
- All Known Implementing Classes:
- LineClipping
public interface RectangleWindow
- extends Property
Interface for 2D clipping using axis-aligned rectangle.
- Since:
- 0.05
- See Also:
- RectangleWindow.java
Method Summary |
void |
rectangleWindow(double xMin,
double xMax,
double yMin,
double yMax)
Sets the given rectangle as clipping window. |
void |
rectangleWindow(int xMin,
int xMax,
int yMin,
int yMax)
Sets the given rectangle as clipping window. |
rectangleWindow
void rectangleWindow(int xMin,
int xMax,
int yMin,
int yMax)
- Sets the given rectangle as clipping window.
- Parameters:
xMin
- Minimal x coordinate.xMax
- Maximal x coordinate.yMin
- Minimal y coordinate.yMax
- Maximal y coordinate.
rectangleWindow
void rectangleWindow(double xMin,
double xMax,
double yMin,
double yMax)
- Sets the given rectangle as clipping window.
- Parameters:
xMin
- Minimal x coordinate.xMax
- Maximal x coordinate.yMin
- Minimal y coordinate.yMax
- Maximal y coordinate.