Method | Description | |
---|---|---|
Clone ( ) : |
This method must be overridden using 'public new [derived_data_type] Clone()'
|
|
CompareTo ( |
Comparator used for ordering point first by ascending X, then by ascending Y and then by ascending Z.
|
|
Distance ( Geometry geom ) : double |
Returns the distance between this geometry instance and another geometry, as measured in the spatial reference system of this instance.
|
|
Equals ( |
Checks whether this instance is spatially equal to the Point 'o'
|
|
Equals ( |
Checks whether the two points are spatially equal
|
|
GetHashCode ( ) : int |
Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table.
|
|
Point3D ( ) : System |
Initializes a new Point at (0,0)
|
|
Point3D ( System.Point p, double z ) : System |
Initializes a new Point
|
|
Point3D ( double x, double y, double z ) : System |
Initializes a new Point
|
|
operator ( ) : |
Vector * Scalar
|
|
this ( uint index ) : double |
Returns part of coordinate. Index 0 = X, Index 1 = Y, , Index 2 = Z
|
public Equals ( |
||
p1 | Point 1 | |
p2 | Point 2 | |
return | bool |
public Point3D ( System.Point p, double z ) : System | ||
p | System.Point | 2D Point |
z | double | Z coordinate |
return | System |
public Point3D ( double x, double y, double z ) : System | ||
x | double | X coordinate |
y | double | Y coordinate |
z | double | Z coordinate |
return | System |