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