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

ValueDescription
CONSTANTRepresents a constant interpolation where values do not change over time
LINEARRepresents linear interpolation with a straight-line transition between keyframes
BEZIERRepresents cubic Bezier interpolation for smooth, controllable curves
B_SPLINERepresents B-spline interpolation providing smooth, non-uniform curves
CARDINAL_SPLINERepresents cardinal spline interpolation with tension control
TCB_SPLINERepresents Tension-Continuity-Bias spline interpolation for advanced curve shaping

See Also