GetSplinePointCatmullRom method
Implementation
Vector2D GetSplinePointCatmullRom(
Vector2D p1,
Vector2D p2,
Vector2D p3,
Vector2D p4,
num t,
) => run(
() => 'GetSplinePointCatmullRom($p1, $p2, $p3, $p4, $t)',
() => rl.Core.GetSplinePointCatmullRom(
_refVector21(p1).ref,
_refVector22(p2).ref,
_refVector23(p3).ref,
_refVector24(p4).ref,
t.toDouble(),
).toD(),
);