4 lines
255 B
TypeScript
4 lines
255 B
TypeScript
import type { Matrix } from '../../../maths/matrix/Matrix';
|
|
import type { TypedArray } from '../../../rendering/renderers/shared/buffer/Buffer';
|
|
export declare function applyMatrix(array: TypedArray, stride: number, offset: number, matrix: Matrix): void;
|