Extension methods for a curve (Point2Dd array). More...
Static Public Member Functions | |
static double[] | SignedDifferences (this Point2Dd[] curve, Point2Dd[] points) |
Calculates signed differences along the y axis of given points to curve (Curve - Points). More... | |
static double[] | QuadraticDifferencesToClosestPoint (this Point2Dd[] curve, Point2Dd[] points) |
Calculates the quadratic distance of points to closest point of given curve (Points of curve - points ). More... | |
static double | EnclosedArea (this Point2Dd[] curve) |
Calculates the enclosed area of the given curve . Uses the shoelace algorithm to calculate the enclosed area of the given curve. All points are assumed to be in order, clock - wise or anti clock - wise will not affect the outcome. This algorithm can only handle not self intersecting curves, e.g. a figure eight curve will not work with this algorithm. More... | |
Extension methods for a curve (Point2Dd array).
|
static |
Calculates the enclosed area of the given curve . Uses the shoelace algorithm to calculate the enclosed area of the given curve. All points are assumed to be in order, clock - wise or anti clock - wise will not affect the outcome. This algorithm can only handle not self intersecting curves, e.g. a figure eight curve will not work with this algorithm.
For numerical stabilization all points are shifted to be centered around the origin.
If the curve is not closed, i.e. the first and last point in the given point set don't match, the curve is closed automatically by connecting the first and last point.
The points on the curve are evaluated in the order in which they are listed. We assume a ordered pointset (not ordered by axis, but ordered according to the curve).
curve | The curve whose enclosed area to calculate. |
ArgumentNullException | When curve is null. |
ArgumentException | When curve contains less than 2 points. |
CvbException | When an error during calculation occurs. |
|
static |
Calculates the quadratic distance of points to closest point of given curve (Points of curve - points ).
The points have to be ordered by time, i.e. two consecutive points must adjoin another on the curve.
For the calculation of the signed differences the curve is assumed to be infinite. It is extended at the starting and endpoint.
curve | The curve. |
points | The points. |
ArgumentNullException | When curve or points is null. |
ArgumentException | When curve contains less than 2 points or points contains less than 1 point. |
CvbException | When an error during calculation occurs. |
Calculates signed differences along the y axis of given points to curve (Curve - Points).
The points have to be ordered by ascending x coordinates.
curve | The curve. |
points | The points. |
ArgumentNullException | When curve or points is null. |
ArgumentException | When curve contains less than 2 points or points contains less than 1 point. |
CvbException | When an error during calculation occurs. |