mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
10 lines
184 B
C
10 lines
184 B
C
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "Point.h"
|
|
|
|
NS_BF_BEGIN;
|
|
|
|
Point2D CatmullRomEvaluate(Point2D &p0, Point2D &p1, Point2D &p2, Point2D &p3, float tension, float t);
|
|
|
|
NS_BF_END;
|