Intersection of two linear functions. More...
#include <polynomial.hpp>
Public Member Functions | |
bool | fail () const |
Boolean flag identifying if the last operation failed or not. | |
Intersection () | |
ECL_PUBLIC CartesianPoint2d | operator() (const LinearFunction &f, const LinearFunction &g) ecl_throw_decl(StandardException) |
Returns the intersection of two linear functions. | |
virtual | ~Intersection () |
Private Attributes | |
bool | last_operation_failed |
Intersection of two linear functions.
Definition at line 1088 of file polynomial.hpp.
ecl::Intersection< LinearFunction >::Intersection | ( | ) | [inline] |
Definition at line 1090 of file polynomial.hpp.
virtual ecl::Intersection< LinearFunction >::~Intersection | ( | ) | [inline, virtual] |
Definition at line 1091 of file polynomial.hpp.
bool ecl::Intersection< LinearFunction >::fail | ( | ) | const [inline] |
Boolean flag identifying if the last operation failed or not.
Use this if you have disabled exceptions or don't wish to catch the exception thrown when linear functions are collinear.
Definition at line 1109 of file polynomial.hpp.
CartesianPoint2d ecl::Intersection< LinearFunction >::operator() | ( | const LinearFunction & | f, |
const LinearFunction & | g | ||
) |
Returns the intersection of two linear functions.
f | : linear function. |
g | : linear function. |
: | StandardException : throws if functions are collinear. |
Definition at line 154 of file polynomial.cpp.
bool ecl::Intersection< LinearFunction >::last_operation_failed [private] |
Definition at line 1112 of file polynomial.hpp.