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

Field Summary
 
Fields inherited from interface cz.cuni.jagrlib.iface.Property
LOGGING, STATISTICS, TEXT_DESCRIPTION
 
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.
 
Methods inherited from interface cz.cuni.jagrlib.iface.Property
commit, get, set
 

Method Detail

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.