Function_iron_in_R3.h
1 /* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
2  * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
3  * Author(s): Siargey Kachanovich
4  *
5  * Copyright (C) 2019 Inria
6  *
7  * Modification(s):
8  * - YYYY/MM Author: Description of the modification
9  */
10 
11 #ifndef FUNCTIONS_FUNCTION_IRON_IN_R3_H_
12 #define FUNCTIONS_FUNCTION_IRON_IN_R3_H_
13 
14 #include <cstdlib> // for std::size_t
15 #include <cmath> // for std::pow
16 
17 #include <Eigen/Dense>
18 
19 namespace Gudhi {
20 
21 namespace coxeter_triangulation {
22 
33  Eigen::VectorXd operator()(const Eigen::VectorXd& p) const {
34  double x = p(0), y = p(1), z = p(2);
35  Eigen::VectorXd result(cod_d());
36  result(0) = -std::pow(x, 6) / 300. - std::pow(y, 6) / 300. - std::pow(z, 6) / 300. + x * y * y * z / 2.1 + y * y +
37  std::pow(z - 2, 4) - 1;
38  return result;
39  }
40 
42  std::size_t amb_d() const { return 3; };
43 
45  std::size_t cod_d() const { return 1; };
46 
48  Eigen::VectorXd seed() const {
49  Eigen::Vector3d result(std::pow(4500, 1. / 6), 0, 0);
50  return result;
51  }
52 
59  Function_iron_in_R3(Eigen::Vector3d off = Eigen::Vector3d::Zero()) : off_(off) {}
60 
61  private:
62  Eigen::Vector3d off_;
63 };
64 
65 } // namespace coxeter_triangulation
66 
67 } // namespace Gudhi
68 
69 #endif
Gudhi namespace.
Definition: SimplicialComplexForAlpha.h:14
A class that encodes the function, the zero-set of which is a surface embedded in R^3 that ressembles...
Definition: Function_iron_in_R3.h:28
std::size_t cod_d() const
Returns the codomain dimension.
Definition: Function_iron_in_R3.h:45
std::size_t amb_d() const
Returns the domain (ambient) dimension.
Definition: Function_iron_in_R3.h:42
Eigen::VectorXd seed() const
Returns a point on the surface.
Definition: Function_iron_in_R3.h:48
Function_iron_in_R3(Eigen::Vector3d off=Eigen::Vector3d::Zero())
Constructor of the function that defines a surface embedded in R^3 that ressembles an iron.
Definition: Function_iron_in_R3.h:59
Eigen::VectorXd operator()(const Eigen::VectorXd &p) const
Value of the function at a specified point.
Definition: Function_iron_in_R3.h:33