bezier: Remove Todo about N-Point bezier curves. (#3352)

This commit is contained in:
Dickby 2023-09-17 19:48:11 +02:00 committed by GitHub
parent af15b15b4b
commit b0a82c04df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,6 @@ 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.
@ -26,4 +25,4 @@ class CBezierCurve {
std::deque<Vector2D> m_dPoints;
std::array<Vector2D, BAKEDPOINTS> m_aPointsBaked;
};
};