Interface IPoint
A Point with X & Y coordinates.
Inherited Members
Assembly: Spatial4n.dll
Syntax
public interface IPoint : IShape
Properties
Name | Description |
---|---|
X | The X coordinate, or Longitude in geospatial contexts. |
Y | The Y coordinate, or Latitude in geospatial contexts. |
Methods
Name | Description |
---|---|
Reset(Double, Double) | Expert: Resets the state of this point given the arguments. This is a performance feature to avoid excessive IShape object allocation as well as some argument normalization & error checking. Mutable shapes is error-prone so use with care. |