qxLib
interpolation.h
Go to the documentation of this file.
1 /**
2 
3  @file interpolation.h
4  @author Khrapov
5  @date 6.08.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/math/common.h>
12 
13 QX_PUSH_SUPPRESS_ALL_WARNINGS();
14 #include <glm/glm.hpp>
15 QX_POP_SUPPRESS_WARNINGS();
16 
17 namespace qx
18 {
19 
20 /**
21  @brief Linear interpolation algorithm
22  @param p0 - point 0 (x - coordinate, y - f(x))
23  @param p1 - point 1 (x - coordinate, y - f(x))
24  @param x - point
25  @retval - ~f(x)
26 **/
27 inline double linear_interpolation(const glm::dvec2& p0, const glm::dvec2& p1, double x)
28 {
29  if (epsilon_equal(p1.x, p0.x))
30  return p0.y;
31 
32  return p0.y + (p1.y - p0.y) * (x - p0.x) / (p1.x - p0.x);
33 }
34 
35 /**
36  @brief Bilinear interpolation algorithm
37  @details po.z is returned on any error
38  @param p0 - point 0 (x, y - coordinates, z - f(x, y))
39  @param p1 - point 1 (x, y - coordinates, z - f(x, y))
40  @param p2 - point 2 (x, y - coordinates, z - f(x, y))
41  @param p3 - point 3 (x, y - coordinates, z - f(x, y))
42  @param p - point (x, y - coordinates).
43  It can be out of points square, in this case algorithm called extrapolation
44  @retval - ~f(p.x, p.y)
45 **/
46 inline double bilinear_interpolation(
47  const glm::dvec3& p0,
48  const glm::dvec3& p1,
49  const glm::dvec3& p2,
50  const glm::dvec3& p3,
51  const glm::dvec2& p)
52 {
53  const glm::dvec2 temp0 { p0.y, linear_interpolation({ p0.x, p0.z }, { p1.x, p1.z }, p.x) };
54  const glm::dvec2 temp1 { p2.y, linear_interpolation({ p2.x, p2.z }, { p3.x, p3.z }, p.x) };
55  const double fRet = linear_interpolation(temp0, temp1, p.y);
56  return fRet;
57 }
58 
59 } // namespace qx
double bilinear_interpolation(const glm::dvec3 &p0, const glm::dvec3 &p1, const glm::dvec3 &p2, const glm::dvec3 &p3, const glm::dvec2 &p)
Bilinear interpolation algorithm.
Definition: interpolation.h:46
double linear_interpolation(const glm::dvec2 &p0, const glm::dvec2 &p1, double x)
Linear interpolation algorithm.
Definition: interpolation.h:27
constexpr bool epsilon_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
Definition: common.inl:20