Package org.locationtech.jts.awt
Interface PointShapeFactory
- All Known Implementing Classes:
PointShapeFactory.BasePointShapeFactory
,PointShapeFactory.Circle
,PointShapeFactory.Cross
,PointShapeFactory.Point
,PointShapeFactory.Square
,PointShapeFactory.Star
,PointShapeFactory.Triangle
,PointShapeFactory.X
public interface PointShapeFactory
An interface for classes which create
Shape
s to represent
PointShapeFactory.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).-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
static class
static class
static class
static class
static class
static class
static class
-
Method Summary
Modifier and TypeMethodDescriptioncreatePoint
(Point2D point) Creates a shape representing aPointShapeFactory.Point
.
-
Method Details
-
createPoint
Creates a shape representing aPointShapeFactory.Point
.- Parameters:
point
- the location of the point- Returns:
- a shape
-