11 #ifndef FUNCTIONS_FUNCTION_TORUS_IN_R3_H_
12 #define FUNCTIONS_FUNCTION_TORUS_IN_R3_H_
17 #include <Eigen/Dense>
21 namespace coxeter_triangulation {
33 Eigen::VectorXd
operator()(
const Eigen::VectorXd& p)
const {
34 double x = p(0) - off_[0], y = p(1) - off_[1], z = p(2) - off_[2];
35 Eigen::VectorXd result(
cod_d());
36 result(0) = (z * z + (std::sqrt(x * x + y * y) - r_) * (std::sqrt(x * x + y * y) - r_) - R_ * R_);
41 std::size_t
amb_d()
const {
return 3; };
44 std::size_t
cod_d()
const {
return 1; };
47 Eigen::VectorXd
seed()
const {
48 Eigen::Vector3d result(R_ + r_ + off_[0], off_[1], off_[2]);
60 : R_(R), r_(r), off_(off) {}
Gudhi namespace.
Definition: SimplicialComplexForAlpha.h:14
A class that encodes the function, the zero-set of which is a torus surface embedded in R^3.
Definition: Function_torus_in_R3.h:28
std::size_t amb_d() const
Returns the domain (ambient) dimension.
Definition: Function_torus_in_R3.h:41
Function_torus_in_R3(double R=1, double r=0.5, Eigen::Vector3d off=Eigen::Vector3d::Zero())
Constructor of the function that defines a torus embedded in R^3.
Definition: Function_torus_in_R3.h:59
std::size_t cod_d() const
Returns the codomain dimension.
Definition: Function_torus_in_R3.h:44
Eigen::VectorXd seed() const
Returns a point on the surface.
Definition: Function_torus_in_R3.h:47
Eigen::VectorXd operator()(const Eigen::VectorXd &p) const
Value of the function at a specified point.
Definition: Function_torus_in_R3.h:33