aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/helpers/BezierCurve.hpp
blob: 461e6142663b7d6138d4b32f7db290b5e77f7d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

#include <deque>
#include <array>
#include <vector>
#include "Vector2D.hpp"

constexpr int   BAKEDPOINTS    = 255;
constexpr float INVBAKEDPOINTS = 1.f / BAKEDPOINTS;

// an implementation of a cubic bezier curve
// might do better later
// TODO: n-point curves
class CBezierCurve {
  public:
    // sets up the bezier curve.
    // this EXCLUDES the 0,0 and 1,1 points,
    void  setup(std::vector<Vector2D>* points);

    float getYForT(float t);
    float getXForT(float t);
    float getYForPoint(float x);

  private:
    // this INCLUDES the 0,0 and 1,1 points.
    std::deque<Vector2D>              m_dPoints;

    std::array<Vector2D, BAKEDPOINTS> m_aPointsBaked;
};