C# 클래스 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.
상속: GeometryCollection
파일 보기 프로젝트 열기: pauldendulk/Mapsui 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

Clone() 공개 메소드

Return a copy of this geometry
public Clone ( ) : MultiPoint
리턴 MultiPoint

Distance() 공개 메소드

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
리턴 double

Geometry() 공개 메소드

Returns an indexed geometry in the collection
public Geometry ( int n ) : System.Point
n int Geometry index
리턴 System.Point

GetBoundingBox() 공개 메소드

The minimum bounding box for this Geometry.
public GetBoundingBox ( ) : BoundingBox
리턴 BoundingBox

GetEnumerator() 공개 메소드

Gets an enumerator for enumerating the geometries in the GeometryCollection
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

IsEmpty() 공개 메소드

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

MultiPoint() 공개 메소드

Initializes a new MultiPoint collection
public MultiPoint ( ) : System
리턴 System

MultiPoint() 공개 메소드

Initializes a new MultiPoint collection
public MultiPoint ( IEnumerable points ) : System
points IEnumerable
리턴 System

this() 공개 메소드

Gets the n'th point in the MultiPoint collection
public this ( int n ) : System.Point
n int Index in collection
리턴 System.Point