DataTexture3D.d.ts 287 B

123456789101112
  1. import { Texture } from './Texture';
  2. import { NearestFilter } from '../constants';
  3. import { TypedArray } from '../polyfills';
  4. export class DataTexture3D extends Texture {
  5. constructor(
  6. data: ArrayBuffer | TypedArray,
  7. width: number,
  8. height: number,
  9. depth: number
  10. );
  11. }
粤ICP备19079148号