Engauge Digitizer
2
|
Single X/Y pair for cubic spline interpolation initialization and calculations. More...
#include <SplinePair.h>
Public Member Functions | |
SplinePair () | |
Default constructor. Normally used only by generic container classes. | |
SplinePair (double scalar) | |
Constructor for filling vector with a single scalar. Provided for convenience over preferred constructor. | |
SplinePair (double x, double y) | |
Preferred constructor. Used when default constructor is not being used by generic container classes. | |
SplinePair (const SplinePair &other) | |
Assigment constructor. | |
SplinePair | operator+ (const SplinePair &other) const |
Addition operator. | |
SplinePair | operator- (const SplinePair &other) const |
Subtraction operator. | |
SplinePair | operator* (const SplinePair &other) const |
Multiplication operator. | |
SplinePair | operator/ (const SplinePair &other) const |
Division operator. | |
double | x () const |
Get method for x. | |
double | y () const |
Get method for y. | |
Single X/Y pair for cubic spline interpolation initialization and calculations.
Definition at line 11 of file SplinePair.h.