Class LineStringRenderer
java.lang.Object
com.kheops.jmap.client.graphics2D.LineStringRenderer
- All Implemented Interfaces:
- Shape
A class used to render line strings as an AWT shape.
- 
Constructor SummaryConstructorsConstructorDescriptionLineStringRenderer(K2DTransform transform) Creates a new line string renderer using the specified transformation matrix.
- 
Method SummaryModifier and TypeMethodDescriptionbooleancontains(double x, double y) booleancontains(double x, double y, double w, double h) booleanbooleangetPathIterator(AffineTransform at, double flatness) booleanintersects(double x, double y, double w, double h) booleanvoidsetLineString(LineString lineString) Sets the line string to be rendered.
- 
Constructor Details- 
LineStringRendererCreates a new line string renderer using the specified transformation matrix.- Parameters:
- transform- the transformation matrix to use.
 
 
- 
- 
Method Details- 
setLineStringSets the line string to be rendered.- Parameters:
- lineString- the line string to be rendered.
 
- 
containspublic boolean contains(double x, double y) 
- 
containspublic boolean contains(double x, double y, double w, double h) 
- 
intersectspublic boolean intersects(double x, double y, double w, double h) - Specified by:
- intersectsin interface- Shape
 
- 
getBounds
- 
contains
- 
getBounds2D- Specified by:
- getBounds2Din interface- Shape
 
- 
contains
- 
intersects- Specified by:
- intersectsin interface- Shape
 
- 
getPathIterator- Specified by:
- getPathIteratorin interface- Shape
 
- 
getPathIterator- Specified by:
- getPathIteratorin interface- Shape
 
 
-