Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Point"/> class.
 /// </summary>
 /// <param name="coordinate">The coordinate used for create this <see cref="Point" />.</param>
 /// <remarks>
 /// For create this <see cref="Geometry"/> is used a standard <see cref="GeometryFactory"/>
 /// with <see cref="PrecisionModel" /> <c> == </c> <see cref="PrecisionModels.Floating"/>.
 /// </remarks>
 public Point(Coordinate coordinate) :
     this(GeometryFactory.Default.CoordinateSequenceFactory.Create(new Coordinate[] { coordinate }),
          GeometryFactory.Default)
 {
 }
Beispiel #2
0
 public override void GetCoordinate(int index, Coordinate coord) => _inner.GetCoordinate(Count - index - 1, coord);