Class PointSymbol
- java.lang.Object
-
- com.bc.ceres.swing.figure.support.PointSymbol
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PointSymbol
createCross(double size)
static PointSymbol
createPlus(double size)
static PointSymbol
createStar(double size)
void
draw(Rendering rendering, FigureStyle style)
Draws the symbol on the given rendering using the given style.Rectangle2D
getBounds()
The bounds of the symbol.boolean
isHitBy(double x, double y)
Tests weather this symbol is hit by the given point.
-
-
-
Method Detail
-
createPlus
public static PointSymbol createPlus(double size)
-
createCross
public static PointSymbol createCross(double size)
-
createStar
public static PointSymbol createStar(double size)
-
draw
public void draw(Rendering rendering, FigureStyle style)
Description copied from interface:Symbol
Draws the symbol on the given rendering using the given style. The rendering's graphics is transformed so that drawing can be done directly in symbol coordinates using view units, e.g.rendering.getGraphics().draw(symbolShape);
orrendering.getGraphics().drawRenderedImage(symbolImage, null);
-
isHitBy
public boolean isHitBy(double x, double y)
Description copied from interface:Symbol
Tests weather this symbol is hit by the given point.
-
getBounds
public Rectangle2D getBounds()
Description copied from interface:Symbol
The bounds of the symbol.
-
-