R
T

CubicBezierPoints

testeddemo

Cubic bezier control points `[x1, y1, x2, y2]` (the implied endpoints are `(0, 0)` and `(1, 1)`), matching the CSS `cubic-bezier()` argument order.

Demo

Loading demo…

Signature

ts
export type CubicBezierPoints = [number, number, number, number];