C# Class Mapsui.Geometries.MultiPoint

A MultiPoint is a 0 dimensional geometric collection. The elements of a MultiPoint are restricted to Points. The points are not connected or ordered.
Inheritance: GeometryCollection
Afficher le fichier Open project: pauldendulk/Mapsui Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : MultiPoint

Return a copy of this geometry

Distance ( System.Point point ) : double

Returns the shortest distance between any two points in the two geometries as calculated in the spatial reference system of this Geometry.

Geometry ( int n ) : System.Point

Returns an indexed geometry in the collection

GetBoundingBox ( ) : BoundingBox

The minimum bounding box for this Geometry.

GetEnumerator ( ) : IEnumerator

Gets an enumerator for enumerating the geometries in the GeometryCollection

IsEmpty ( ) : bool

If true, then this Geometry represents the empty point set, Ø, for the coordinate space.

MultiPoint ( ) : System

Initializes a new MultiPoint collection

MultiPoint ( IEnumerable points ) : System

Initializes a new MultiPoint collection

this ( int n ) : System.Point

Gets the n'th point in the MultiPoint collection

Method Details

Clone() public méthode

Return a copy of this geometry
public Clone ( ) : MultiPoint
Résultat MultiPoint

Distance() public méthode

Returns the shortest distance between any two points in the two geometries as calculated in the spatial reference system of this Geometry.
public Distance ( System.Point point ) : double
point System.Point Geometry to calculate distance to
Résultat double

Geometry() public méthode

Returns an indexed geometry in the collection
public Geometry ( int n ) : System.Point
n int Geometry index
Résultat System.Point

GetBoundingBox() public méthode

The minimum bounding box for this Geometry.
public GetBoundingBox ( ) : BoundingBox
Résultat BoundingBox

GetEnumerator() public méthode

Gets an enumerator for enumerating the geometries in the GeometryCollection
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

IsEmpty() public méthode

If true, then this Geometry represents the empty point set, Ø, for the coordinate space.
public IsEmpty ( ) : bool
Résultat bool

MultiPoint() public méthode

Initializes a new MultiPoint collection
public MultiPoint ( ) : System
Résultat System

MultiPoint() public méthode

Initializes a new MultiPoint collection
public MultiPoint ( IEnumerable points ) : System
points IEnumerable
Résultat System

this() public méthode

Gets the n'th point in the MultiPoint collection
public this ( int n ) : System.Point
n int Index in collection
Résultat System.Point