Interface ICurve

ICurve interface

A ICurve is a sequence of points.

public interface ICurve : IGeometry

Properties

NameDescription
EndPoint { get; }Returns a copy of the end point of the curve.
IsClosed { get; }Gets a values indicating whether a curve is closed. A curve is closed if its start point is equal to its end point.
StartPoint { get; }Returns a copy of the starting point of the curve.

Methods

NameDescription
ToEditable()Gets an editable copy of this geometry.
ToLinearGeometry()Gets approximate or equivalent non-curve version of this geometry using the default tolerance.
ToLinearGeometry(double)Gets approximate or equivalent non-curve version of this geometry using the specified tolerance.

See Also