Interpolation
Overview
Interpolation is a enum in Aspose.3D FOSS for Typescript.
Interpolation.CONSTANT represents a constant interpolation where values do not change over time.
This enumeration defines 6 values: CONSTANT, LINEAR, BEZIER, B_SPLINE, CARDINAL_SPLINE, TCB_SPLINE.
Description
Interpolation is an enumeration type in the Aspose.3D FOSS library for TypeScript. It defines a set of named constants that control behavior or specify options within the API. Enumerations like Interpolation help ensure type safety by restricting values to a predefined set.
Values
| Value | Description |
|---|---|
CONSTANT | Represents a constant interpolation where values do not change over time |
LINEAR | Represents linear interpolation with a straight-line transition between keyframes |
BEZIER | Represents cubic Bezier interpolation for smooth, controllable curves |
B_SPLINE | Represents B-spline interpolation providing smooth, non-uniform curves |
CARDINAL_SPLINE | Represents cardinal spline interpolation with tension control |
TCB_SPLINE | Represents Tension-Continuity-Bias spline interpolation for advanced curve shaping |