Class MultiPoint
Models a collection of Point
s.
Assembly: NetTopologySuite.dll
Syntax
[Serializable]
public class MultiPoint : GeometryCollection, IComparable, IComparable<Geometry>, IEnumerable<Geometry>, IEnumerable, IPuntal
Constructors
|
Improve this Doc
View Source
MultiPoint(Point[])
Declaration
public MultiPoint(Point[] points)
Parameters
Type |
Name |
Description |
Point[] |
points |
The Point s for this MultiPoint
, or null or an empty array to create the empty point.
Elements may be empty Point s, but not null s.
|
|
Improve this Doc
View Source
MultiPoint(Point[], GeometryFactory)
Declaration
public MultiPoint(Point[] points, GeometryFactory factory)
Parameters
Type |
Name |
Description |
Point[] |
points |
The Point s for this MultiPoint
, or null or an empty array to create the empty point.
Elements may be empty Point s, but not null s.
|
GeometryFactory |
factory |
|
Fields
|
Improve this Doc
View Source
Empty
Represents an empty MultiPoint
.
Declaration
public static readonly MultiPoint Empty
Field Value
Properties
|
Improve this Doc
View Source
Boundary
Gets the boundary of this geometry.
Zero-dimensional geometries have no boundary by definition,
so an empty GeometryCollection is returned.
Declaration
public override Geometry Boundary { get; }
Property Value
Overrides
|
Improve this Doc
View Source
BoundaryDimension
Declaration
public override Dimension BoundaryDimension { get; }
Property Value
Overrides
|
Improve this Doc
View Source
Dimension
Declaration
public override Dimension Dimension { get; }
Property Value
Overrides
|
Improve this Doc
View Source
GeometryType
Returns the name of this object's interface.
Declaration
public override string GeometryType { get; }
Property Value
Type |
Description |
String |
"MultiPoint"
|
Overrides
|
Improve this Doc
View Source
IsValid
Declaration
public override bool IsValid { get; }
Property Value
Overrides
|
Improve this Doc
View Source
OgcGeometryType
Declaration
public override OgcGeometryType OgcGeometryType { get; }
Property Value
Overrides
|
Improve this Doc
View Source
SortIndex
Gets a value to sort the geometry
Declaration
protected override Geometry.SortIndexValue SortIndex { get; }
Property Value
Overrides
Methods
|
Improve this Doc
View Source
CopyInternal()
Declaration
protected override Geometry CopyInternal()
Returns
Overrides
|
Improve this Doc
View Source
EqualsExact(Geometry, Double)
Declaration
public override bool EqualsExact(Geometry other, double tolerance)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
GetCoordinate(Int32)
Returns the Coordinate
at the given position.
Declaration
protected Coordinate GetCoordinate(int n)
Parameters
Type |
Name |
Description |
Int32 |
n |
The index of the Coordinate to retrieve, beginning at 0.
|
Returns
|
Improve this Doc
View Source
ReverseInternal()
Declaration
protected override Geometry ReverseInternal()
Returns
Overrides
Implements