Spaces:
Running
Running
File size: 287 Bytes
6cd9596 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
);
}
|