babylon.types.ts 461 B

1234567891011121314
  1. module BABYLON {
  2. export type Nullable<T> = T | null;
  3. export type float = number;
  4. export type double = number;
  5. export type int = number;
  6. export type FloatArray = number[] | Float32Array;
  7. export type IndicesArray = number[] | Int32Array | Uint32Array | Uint16Array;
  8. /**
  9. * Alias for types that can be used by a Buffer or VertexBuffer.
  10. */
  11. export type DataArray = number[] | ArrayBuffer | ArrayBufferView;
  12. }