web3d / node_modules /three /src /textures /DataTexture3D.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
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
);
}