mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
BeefySysLib point/rect updates, async pipe fixes
This commit is contained in:
parent
81a9478e77
commit
fe1aa3c26e
32 changed files with 282 additions and 120 deletions
|
@ -38,7 +38,7 @@ public:
|
|||
class CubicSpline2D
|
||||
{
|
||||
public:
|
||||
std::vector<Point2D> mInputPoints;
|
||||
std::vector<PointF> mInputPoints;
|
||||
CubicVal* mXCubicArray;
|
||||
CubicVal* mYCubicArray;
|
||||
|
||||
|
@ -53,7 +53,7 @@ public:
|
|||
int GetLength();
|
||||
|
||||
void Calculate();
|
||||
Point2D Evaluate(float t);
|
||||
PointF Evaluate(float t);
|
||||
};
|
||||
|
||||
NS_BF_END;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue