| 123456789101112 |
- 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
- );
- }
|