mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
25 lines (23 loc) • 559 B
text/typescript
import * as glMatrix from 'gl-matrix';
import * as glMatrixAddon from './gl-matrix-addon';
import * as math from './math';
import * as canvas from './canvas';
import BinaryStream from './binarystream';
import BitStream from './bitstream';
import urlWithParams from './urlwithparams';
import * as path from './path';
import { isPng, isJpeg, isGif, isWebP } from './isformat';
export default {
glMatrix,
glMatrixAddon,
math,
canvas,
BinaryStream,
BitStream,
urlWithParams,
path,
isPng,
isJpeg,
isGif,
isWebP,
};