Improve bezier baking & approx

This commit is contained in:
vaxerski
2022-05-12 16:59:51 +02:00
parent 1d21e5303b
commit bef4d7c9b7
2 changed files with 14 additions and 11 deletions

View File

@@ -23,5 +23,5 @@ private:
// this INCLUDES the 0,0 and 1,1 points.
std::deque<Vector2D> m_dPoints;
std::array<float, BAKEDPOINTS> m_aPointsBaked;
std::array<Vector2D, BAKEDPOINTS> m_aPointsBaked;
};