Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
Equals ( ICoordinate p ) : bool |
Gets a value indicating whether this coordinate is equal to another. Comparisions performs with tolerance value stored in MapAround.Geometry.PlanimetryAlgorithms.Tolerance. Z values are not compared.
|
|
Equals ( object o ) : bool |
Derived from System.Object.
|
|
ExactEquals ( ICoordinate p ) : bool |
Gets a value indicating whether this coordinate instance is equal to another. Comparisions performs exactly (used zero tolerance value). Z values are not compared.
|
|
GetBoundingRectangle ( ) : BoundingRectangle |
Calculates a minimal axis-aligned bounding rectangle.
|
|
GetHashCode ( ) : int |
Derived from System.Object.
|
|
ReadOnlyCopy ( ) : ICoordinate |
Creates a read only copy of this object.
|
|
Translate ( double x, double y ) : void |
Adds a values to X and Y coordinates.
|
|
Values ( ) : double[] |
Gets an array containing coordinate values.
|
|
operator ( ) : bool |
Returns true if coordinates are equal (used tolerance value stored in MapAround.Geometry.PlanimetryAlgorithms.Tolerance).
|
Method | Description | |
---|---|---|
Coordinate3D ( double coords ) : System |
Initializes a new instance of MapAround.Geometry.Coordinate3D.
|
|
Coordinate3D ( double x, double y ) : System |
Initializes a new instance of MapAround.Geometry.Coordinate3D.
|
|
Coordinate3D ( double x, double y, double z ) : System |
Initializes a new instance of MapAround.Geometry.Coordinate3D.
|
public Equals ( ICoordinate p ) : bool | ||
p | ICoordinate | The MapAround.Geometry.ICoordinate implementor to compare with the current object |
return | bool |
public Equals ( object o ) : bool | ||
o | object | The System.Object to compare with the current MapAround.Geometry.Coordinate |
return | bool |
public ExactEquals ( ICoordinate p ) : bool | ||
p | ICoordinate | The MapAround.Geometry.ICoordinate implementor to compare with the current object |
return | bool |
public GetBoundingRectangle ( ) : BoundingRectangle | ||
return | BoundingRectangle |
public Translate ( double x, double y ) : void | ||
x | double | The value that will be added to X coordinate |
y | double | The value that will be added to Y coordinate |
return | void |