web3d / node_modules /three /src /animation /AnimationUtils.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
540 Bytes
export namespace AnimationUtils {
export function arraySlice(array: any, from: number, to: number): any;
export function convertArray(array: any, type: any, forceClone: boolean): any;
export function isTypedArray(object: any): boolean;
export function getKeyFrameOrder(times: number): number[];
export function sortedArray(
values: any[],
stride: number,
order: number[]
): any[];
export function flattenJSON(
jsonKeys: string[],
times: any[],
values: any[],
valuePropertyName: string
): void;
}