CubicBezier interface
Defines a cubic bezier curve used for transitions.
Signature:
export interface CubicBezier
Remarks
The first and last point of the 4 point curve are fixed at (0,0) and (1,1)
Properties
CubicBezier.x1 property
Signature:
readonly x1: number;
CubicBezier.x2 property
Signature:
readonly x2: number;
CubicBezier.y1 property
Signature:
readonly y1: number;
CubicBezier.y2 property
Signature:
readonly y2: number;
Updated 10 months ago