UNPKG

@phaserjs/phaser

Version:
6 lines (5 loc) 211 B
import { Bezier } from "../Bezier"; import { Vec2 } from "./Vec2"; export function Vec2Bezier(a, b, c, d, t, out = new Vec2()) { return out.set(Bezier(a.x, b.x, c.x, d.x, t), Bezier(a.y, b.y, c.y, d.y, t)); }