@kitware/vtk.js
Version:
Visualization Toolkit for the Web
25 lines (21 loc) • 399 B
TypeScript
export declare enum Shading {
FLAT = 0,
GOURAUD = 1,
PHONG = 2,
}
export declare enum Representation {
POINTS = 0,
WIREFRAME = 1,
SURFACE = 2,
}
export declare enum Interpolation {
FLAT = 0,
GOURAUD = 1,
PHONG = 2,
}
declare const _default: {
Shading: typeof Shading;
Representation: typeof Representation;
Interpolation: typeof Interpolation;
};
export default _default;