machineuser
version control dist & node_modules...
263e0f2
raw
history blame contribute delete
287 Bytes
import { Texture } from './Texture';
import { NearestFilter } from '../constants';
import { TypedArray } from '../polyfills';
export class DataTexture3D extends Texture {
constructor(
data: ArrayBuffer | TypedArray,
width: number,
height: number,
depth: number
);
}