Fields Summary |
---|
boolean | INITIAL_DISPLAYDefault value for the display property |
boolean | INITIAL_VISIBILITYDefault value for the visibility property |
RGB | INITIAL_COLORDefault value for the current color |
RGB | INITIAL_FILLDefault value for the fill paint |
float | INITIAL_FILL_OPACITYDefault value for fill opacity |
RGB | INITIAL_STROKEDefault value for the stroke paint |
float | INITIAL_STROKE_OPACITYDefault value for stroke opacity |
int | INITIAL_FILL_RULEDefault stroke-width value |
float | INITIAL_STROKE_WIDTHDefault stroke width |
int | INITIAL_STROKE_LINE_JOINDefault line join |
int | INITIAL_STROKE_LINE_CAPDefault line cap |
float | INITIAL_STROKE_MITER_LIMITDefault miter limit |
float[] | INITIAL_STROKE_DASH_ARRAYDefault dash array |
float | INITIAL_STROKE_DASH_OFFSETDefault dash offset |
float | INITIAL_OPACITYDefault value for opacity |
int | WIND_EVEN_ODDThe even-odd rule specifies that a point lies inside the
path if a ray drawn in any direction from that point to
infinity is crossed by path segments an odd number of times. |
int | WIND_NON_ZEROThe non-zero rule specifies that a point lies inside the
path if a ray drawn in any direction from that point to
infinity is crossed by path segments a different number
of times in the counter-clockwise direction than the
clockwise direction. |
int | JOIN_MITERJoins path segments by extending their outside edges until
they meet. |
int | JOIN_ROUNDJoins path segments by rounding off the corner at a radius
of half the line width. |
int | JOIN_BEVELJoins path segments by connecting the outer corners of their
wide outlines with a straight segment. |
int | CAP_BUTTEnds unclosed subpaths and dash segments with no added
decoration. |
int | CAP_ROUNDEnds unclosed subpaths and dash segments with a round
decoration that has a radius equal to half of the width
of the pen. |
int | CAP_SQUAREEnds unclosed subpaths and dash segments with a square
projection that extends beyond the end of the segment
to a distance equal to half of the line width. |
Methods Summary |
---|
public RGB | getColor()
|
public boolean | getDisplay()
|
public PaintServer | getFill()
|
public float | getFillOpacity()
|
public int | getFillRule()
|
public float | getOpacity()
|
public PaintServer | getStroke()
|
public float[] | getStrokeDashArray()
|
public float | getStrokeDashOffset()
|
public int | getStrokeLineCap()
|
public int | getStrokeLineJoin()
|
public float | getStrokeMiterLimit()
|
public float | getStrokeOpacity()
|
public float | getStrokeWidth()
|
public boolean | getVisibility()
|
public void | setColor(RGB color)
|
public void | setDisplay(boolean display)
|
public void | setFill(PaintServer fill)
|
public void | setFillOpacity(float fillOpacity)
|
public void | setFillRule(int fillRule)
|
public void | setOpacity(float opacity)
|
public void | setStroke(PaintServer stroke)
|
public void | setStrokeDashArray(float[] strokeDashArray)
|
public void | setStrokeDashOffset(float strokeDashOffset)
|
public void | setStrokeLineCap(int strokeLineCap)
|
public void | setStrokeLineJoin(int strokeLineJoin)
|
public void | setStrokeMiterLimit(float strokeMiterLimit)
|
public void | setStrokeOpacity(float strokeOpacity)
|
public void | setStrokeWidth(float strokeWidth)
|
public void | setVisibility(boolean visibility)
|