Blueprint for interpolating a cubic polynomial between end point conditions. More...
#include <polynomial.hpp>

| Public Types | |
| typedef ecl::CubicPolynomial | base_type | 
| Abstract representation of the class to be instantiated/configured.  More... | |
| Public Member Functions | |
| void | apply (base_type &polynomial) const | 
| Apply the blueprint to configure an existing object.  More... | |
| CubicSecondDerivativeInterpolation (const double x_i, const double y_i, const double yddot_i, const double x_f, const double y_f, const double yddot_f) | |
| Constructor that properly configures/initialises the blueprint.  More... | |
| base_type | instantiate () | 
| Instantiate a copy of the object that is blueprinted.  More... | |
| virtual | ~CubicSecondDerivativeInterpolation () | 
|  Public Member Functions inherited from ecl::BluePrint< CubicSecondDerivativeInterpolation > | |
| BluePrint () | |
| void | implementApply (BaseType &object) const | 
| BaseType | implementInstantiate () | 
| virtual | ~BluePrint () | 
| Private Attributes | |
| double | x_final | 
| double | x_initial | 
| double | y_final | 
| double | y_initial | 
| double | yddot_final | 
| double | yddot_initial | 
Blueprint for interpolating a cubic polynomial between end point conditions.
Blueprint for interpolating a cubic polynomial between two end point conditions. That is, the resulting polynomial y(x) should satisfy the following conditions:
Definition at line 698 of file polynomial.hpp.
Abstract representation of the class to be instantiated/configured.
Definition at line 705 of file polynomial.hpp.
| 
 | inline | 
Constructor that properly configures/initialises the blueprint.
Constructor that accepts the boundary constraints used to generate the cubic.
| x_i | : initial domain value. | 
| y_i | : initial polynomial value. | 
| yddot_i | : initial polynomial curvature. | 
| x_f | : final domain value. | 
| y_f | : final polynomial value. | 
| yddot_f | : final polynomial curvature. | 
Definition at line 718 of file polynomial.hpp.
| 
 | inlinevirtual | 
Definition at line 728 of file polynomial.hpp.
| void ecl::blueprints::CubicSecondDerivativeInterpolation::apply | ( | base_type & | polynomial | ) | const | 
Apply the blueprint to configure an existing object.
Apply the boundary conditions to generate coefficients for the given polynomial.
| polynomial | : the polynomial to configure from the supplied boundary conditions. | 
Definition at line 131 of file polynomial_blueprints.cpp.
| ecl::CubicPolynomial ecl::blueprints::CubicSecondDerivativeInterpolation::instantiate | ( | ) | 
Instantiate a copy of the object that is blueprinted.
Instantiates a new cubic generated from the input boundary conditions.
Definition at line 125 of file polynomial_blueprints.cpp.
| 
 | private | 
Definition at line 749 of file polynomial.hpp.
| 
 | private | 
Definition at line 748 of file polynomial.hpp.
| 
 | private | 
Definition at line 749 of file polynomial.hpp.
| 
 | private | 
Definition at line 748 of file polynomial.hpp.
| 
 | private | 
Definition at line 749 of file polynomial.hpp.
| 
 | private | 
Definition at line 748 of file polynomial.hpp.