Interface PointShapeFactory

All Known Implementing Classes: PointShapeFactory.BasePointShapeFactory
public interface PointShapeFactory
An interface for classes which create Shapes to represent Point geometries. Java2D does not provide an actual point shape, so some other shape must be used to render points (e.g. such as a Rectangle or Ellipse).
Authors:
Martin Davis
Shape createPoint(Point2D point)
Creates a shape representing a Point.
Parameters:
point - point the location of the point
Returns:
a shape