Package org.locationtech.spatial4j.shape
Interface ShapeFactory.PointsBuilder<T>
-
- All Known Subinterfaces:
ShapeFactory.LineStringBuilder
,ShapeFactory.MultiPointBuilder
,ShapeFactory.PolygonBuilder
,ShapeFactory.PolygonBuilder.HoleBuilder
- All Known Implementing Classes:
OnePointsBuilder
,ShapeFactoryImpl.GeneralShapeMultiShapeBuilder
- Enclosing interface:
- ShapeFactory
public static interface ShapeFactory.PointsBuilder<T>
Builds a point and returns the generic specified type (usually whatever "this" is).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
pointXY(double x, double y)
T
pointXYZ(double x, double y, double z)
-
-
-
Method Detail
-
pointXY
T pointXY(double x, double y)
- See Also:
ShapeFactory.pointXY(double, double)
-
pointXYZ
T pointXYZ(double x, double y, double z)
-
-