src/volume/Material.js
/**
 * An enumeration of material constants.
 *
 * @type {Object}
 * @property {Number} AIR - Indicates empty space.
 * @property {Number} SOLID - Indicates solid material.
 */
export const Material = {
	AIR: 0,
	SOLID: 1
};
    
  