21 #ifndef GEOS_GEOS_MULTIPOINT_H
22 #define GEOS_GEOS_MULTIPOINT_H
24 #include <geos/export.h>
25 #include <geos/geom/GeometryCollection.h>
26 #include <geos/geom/Dimension.h>
28 #include <geos/inline.h>
36 class CoordinateArraySequence;
45 #pragma warning(disable:4250) // T1 inherits T2 via dominance
69 int getBoundaryDimension()
const override;
80 std::unique_ptr<Geometry> getBoundary()
const override;
82 std::string getGeometryType()
const override;
86 bool equalsExact(
const Geometry* other,
double tolerance = 0)
const override;
88 std::unique_ptr<Geometry>
91 return std::unique_ptr<Geometry>(
new MultiPoint(*
this));
94 std::unique_ptr<Geometry>
128 const Coordinate* getCoordinateN(
size_t n)
const;
131 getSortIndex()
const override
133 return SORTINDEX_MULTIPOINT;
145 #endif // ndef GEOS_GEOS_MULTIPOINT_H
std::unique_ptr< Geometry > clone() const override
Definition: MultiPoint.h:89
GeometryTypeId
Geometry types.
Definition: Geometry.h:75
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
bool isDimensionStrict(Dimension::DimensionType d) const override
Checks whether this Geometry consists only of components having dimension d.
Definition: MultiPoint.h:64
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition: GeometryFactory.h:68
Represents a collection of heterogeneous Geometry objects.
Definition: GeometryCollection.h:55
Definition: MultiPoint.h:53
Dimension value of a point (0).
Definition: Dimension.h:42
std::unique_ptr< Geometry > reverse() const override
Definition: MultiPoint.h:95
DimensionType
Definition: Dimension.h:31