Hyprland/src/helpers/BezierCurve.hpp

27 lines
655 B
C++
Raw Normal View History

2022-04-23 21:47:16 +02:00
#pragma once
#include "../defines.hpp"
#include <deque>
2023-03-03 14:17:11 +01:00
constexpr int BAKEDPOINTS = 255;
2022-04-23 23:16:43 +02:00
constexpr float INVBAKEDPOINTS = 1.f / BAKEDPOINTS;
2022-04-23 21:47:16 +02:00
// an implementation of a cubic bezier curve
// might do better later
// TODO: n-point curves
class CBezierCurve {
public:
2022-04-23 21:47:16 +02:00
// sets up the bezier curve.
// this EXCLUDES the 0,0 and 1,1 points,
void setup(std::vector<Vector2D>* points);
2022-04-23 21:47:16 +02:00
float getYForT(float t);
float getXForT(float t);
float getYForPoint(float x);
2022-04-23 21:47:16 +02:00
private:
2022-04-23 21:47:16 +02:00
// this INCLUDES the 0,0 and 1,1 points.
std::deque<Vector2D> m_dPoints;
2022-04-23 21:47:16 +02:00
std::array<Vector2D, BAKEDPOINTS> m_aPointsBaked;
2022-04-23 21:47:16 +02:00
};