Geogram
Version 1.9.1-rc
A programming library of geometric algorithms
|
Invalid input exception. More...
#include <geogram/delaunay/delaunay.h>
Public Member Functions | |
InvalidInput (int error_code_in) | |
InvalidInput constructor. More... | |
InvalidInput (const InvalidInput &rhs) | |
InvalidInput copy constructor. More... | |
const char * | what () const GEO_NOEXCEPT override |
Gets the string identifying the exception. | |
Public Attributes | |
int | error_code |
An implementation-dependent error code. | |
vector< index_t > | invalid_facets |
The indices of the constrained facets that have an intersection (or that are duplicated). | |
Invalid input exception.
This exception is thrown by Delaunay implementations in constrained mode, when constraints self-intersect.
Definition at line 104 of file delaunay.h.
GEO::Delaunay::InvalidInput::InvalidInput | ( | int | error_code_in | ) |
InvalidInput constructor.
[in] | error_code_in | an implementation-dependent error code |
GEO::Delaunay::InvalidInput::InvalidInput | ( | const InvalidInput & | rhs | ) |
InvalidInput copy constructor.
[in] | rhs | a const reference to the InvalidInput to be copied |