doggydog-3d / node_modules /three /src /animation /tracks /QuaternionKeyframeTrack.d.ts
machineuser
version control dist & node_modules...
263e0f2
raw
history blame contribute delete
284 Bytes
import { KeyframeTrack } from './../KeyframeTrack';
import { InterpolationModes } from '../../constants';
export class QuaternionKeyframeTrack extends KeyframeTrack {
constructor(
name: string,
times: any[],
values: any[],
interpolation?: InterpolationModes
);
}