| java.lang.Object org.apache.harmony.awt.gl.render.JavaLineRasterizer
JavaLineRasterizer | public class JavaLineRasterizer (Code) | | |
Inner Class :public static class LineDasher | |
Inner Class :abstract static class Line | |
Method Summary | |
static int | clip(int dX1, int dX2, int cX, boolean top) | static int | clipX(int dx, int dy, int cy, boolean top) | static int | clipY(int dx, int dy, int cx, boolean top) | public static MultiRectArea | rasterize(int x1, int y1, int x2, int y2, MultiRectArea clip, LineDasher dasher, boolean invert) |
clip | static int clip(int dX1, int dX2, int cX, boolean top)(Code) | | Common clipping method
|
clipX | static int clipX(int dx, int dy, int cy, boolean top)(Code) | | Clipping along X axis
|
clipY | static int clipY(int dx, int dy, int cx, boolean top)(Code) | | Clipping along Y axis
|
rasterize | public static MultiRectArea rasterize(int x1, int y1, int x2, int y2, MultiRectArea clip, LineDasher dasher, boolean invert)(Code) | | Rasterizes line using clippind and dashing style
Parameters: x1 - - the x coordinate of the first control point Parameters: y1 - - the y coordinate of the first control point Parameters: x2 - - the x coordinate of the second control point Parameters: y2 - - the y coordinate of the second control point Parameters: clip - - the MultiRectArea object of clipping area Parameters: dasher - - the dasher style Parameters: invert - - the invert indicator, always false a MultiRectArea of rasterizer line |
|
|