Méthode | Description | |
---|---|---|
Boundary ( ) : Geometry |
The boundary of a MultiPoint is the empty set (null).
|
|
Buffer ( double d ) : Geometry |
Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry.
|
|
Clone ( ) : |
Return a copy of this geometry
|
|
ConvexHull ( ) : Geometry |
Geometry—Returns a geometry that represents the convex hull of this Geometry.
|
|
Difference ( Geometry geom ) : Geometry |
Returns a geometry that represents the point set difference of this Geometry with anotherGeometry.
|
|
Distance ( Geometry geom ) : 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
|
|
Intersection ( Geometry geom ) : Geometry |
Returns a geometry that represents the point set intersection of this Geometry with anotherGeometry.
|
|
IsEmpty ( ) : bool |
If true, then this Geometry represents the empty point set, Ø, for the coordinate space.
|
|
IsSimple ( ) : bool |
Returns 'true' if this Geometry has no anomalous geometric points, such as self intersection or self tangency. The description of each instantiable geometric class will include the specific conditions that cause an instance of that class to be classified as not simple.
|
|
MultiPoint ( ) : System |
Initializes a new MultiPoint collection
|
|
SymDifference ( Geometry geom ) : Geometry |
Returns a geometry that represents the point set symmetric difference of this Geometry with anotherGeometry.
|
|
Union ( Geometry geom ) : Geometry |
Returns a geometry that represents the point set union of this Geometry with anotherGeometry.
|
|
this ( int n ) : System.Point |
Gets the n'th point in the MultiPoint collection
|
public Buffer ( double d ) : Geometry | ||
d | double | Buffer distance |
Résultat | Geometry |
public Difference ( Geometry geom ) : Geometry | ||
geom | Geometry | Geometry to compare to |
Résultat | Geometry |
public Distance ( Geometry geom ) : double | ||
geom | Geometry | Geometry to calculate distance to |
Résultat | double |
public Geometry ( int N ) : System.Point | ||
N | int | Geometry index |
Résultat | System.Point |
public Intersection ( Geometry geom ) : Geometry | ||
geom | Geometry | Geometry to intersect with |
Résultat | Geometry |
public SymDifference ( Geometry geom ) : Geometry | ||
geom | Geometry | Geometry to compare to |
Résultat | Geometry |
public Union ( Geometry geom ) : Geometry | ||
geom | Geometry | Geometry to union with |
Résultat | Geometry |
public this ( int n ) : System.Point | ||
n | int | Index in collection |
Résultat | System.Point |