@kitware/vtk.js
Version:
Visualization Toolkit for the Web
20 lines (17 loc) • 420 B
JavaScript
var FormatTypes = {
ASCII: 'ascii',
BINARY: 'binary'
};
/**
* Choose the name used for the texture coordinates.
* (u, v) or (texture_u, texture_v)
*/
var TextureCoordinatesName = {
UV: ['u', 'v'],
TEXTURE_UV: ['texture_u', 'texture_v']
};
var Constants = {
FormatTypes: FormatTypes,
TextureCoordinatesName: TextureCoordinatesName
};
export { FormatTypes, TextureCoordinatesName, Constants as default };