1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00
Beef/BeefySysLib/util/CatmullRom.h
2025-03-28 08:08:33 -04:00

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;