// Note: All functions in this module must conform to DocumentGraphHandler's script engine API.
class Tolerances {
	/**
	 * Range to be considered equal thickness
	 */
	thickness = 0.01;
	volume = 0.0001;
}

/**
 * Tolerances for scripts
 */
export const tolerances = new Tolerances();
