Exemplo n.º 1
0
        /// <summary>
        /// Creates a <see cref="LineString" /> whose coordinates are in the reverse order of this objects.
        /// </summary>
        /// <returns>A <see cref="LineString" /> with coordinates in the reverse order.</returns>
        public virtual ILineString Reverse()
        {
            List <Coordinate> result = Coordinates.CloneList();

            result.Reverse();
            return(new LineString(result));
        }