CatmullRom.h 179 B

12345678910
  1. #pragma once
  2. #include "Common.h"
  3. #include "Point.h"
  4. NS_BF_BEGIN;
  5. PointF CatmullRomEvaluate(PointF &p0, PointF &p1, PointF &p2, PointF &p3, float tension, float t);
  6. NS_BF_END;