Blueprint for generating a linear function from slope and point pair. More...
#include <polynomial.hpp>
Public Types | |
typedef ecl::LinearFunction | base_type |
Abstract representation of the class to be instantiated/configured. More... | |
Public Member Functions | |
void | apply (ecl::LinearFunction &function) const |
Apply the blueprint to configure an existing object. More... | |
ecl::LinearFunction | instantiate () |
Instantiate a copy of the object that is blueprinted. More... | |
LinearPointSlopeForm (const double x_f, const double y_f, const double s) | |
Constructor that properly configures/initialises the blueprint. More... | |
virtual | ~LinearPointSlopeForm () |
Public Member Functions inherited from ecl::BluePrint< LinearPointSlopeForm > | |
BluePrint () | |
void | implementApply (BaseType &object) const |
BaseType | implementInstantiate () |
virtual | ~BluePrint () |
Private Attributes | |
double | slope |
double | x_final |
double | y_final |
Blueprint for generating a linear function from slope and point pair.
That is, the resulting linear function y(x) should satisfy the following conditions:
Definition at line 562 of file polynomial.hpp.
Abstract representation of the class to be instantiated/configured.
Definition at line 569 of file polynomial.hpp.
|
inline |
Constructor that properly configures/initialises the blueprint.
Constructor that accepts the boundary constraints used to generate the linear function.
x_f | : final domain value. |
y_f | : final polynomial value. |
s | : slope |
Definition at line 579 of file polynomial.hpp.
|
inlinevirtual |
Definition at line 585 of file polynomial.hpp.
void ecl::blueprints::LinearPointSlopeForm::apply | ( | ecl::LinearFunction & | function | ) | const |
Apply the blueprint to configure an existing object.
Apply the boundary conditions to generate coefficients for the given polynomial.
function | : the linear function to configure from the input conditions. |
Definition at line 70 of file polynomial_blueprints.cpp.
ecl::LinearFunction ecl::blueprints::LinearPointSlopeForm::instantiate | ( | ) |
Instantiate a copy of the object that is blueprinted.
Instantiates a new linear function generated from the input conditions.
Definition at line 64 of file polynomial_blueprints.cpp.
|
private |
Definition at line 605 of file polynomial.hpp.
|
private |
Definition at line 606 of file polynomial.hpp.
|
private |
Definition at line 606 of file polynomial.hpp.