The concept FunctionForImplicitManifold describes the requirements for a type to implement an implicit function class used for example in Manifold_tracing. More...
#include <concept/Coxeter_triangulation/FunctionForImplicitManifold.h>
Public Member Functions | |
| Eigen::VectorXd | operator() (const Eigen::VectorXd &p) const |
| Value of the function at a specified point 'p'. More... | |
| std::size_t | amb_d () const |
| Returns the domain (ambient) dimension. | |
| std::size_t | cod_d () const |
| Returns the codomain dimension. | |
| Eigen::VectorXd | seed () const |
| Returns a point on the zero-set of the function. | |
The concept FunctionForImplicitManifold describes the requirements for a type to implement an implicit function class used for example in Manifold_tracing.
| Eigen::VectorXd Gudhi::coxeter_triangulation::FunctionForImplicitManifold::operator() | ( | const Eigen::VectorXd & | p | ) | const |
Value of the function at a specified point 'p'.
| [in] | p | The input point given by its Cartesian coordinates. Its size needs to be equal to amb_d(). |