-
Michal Malý authoredMichal Malý authored
util.ts 1.21 KiB
import { Color } from '../../mol-util/color';
export function isoBounds(min: number, max: number): { min: number, max: number, step: number } {
let diff = max - min;
if (diff <= 0.0)
return { min, max, step: 0.01 }; // This should never happen
diff /= 25;
const l = Math.floor(Math.log10(diff));
const step = Math.pow(10.0, l);
min = Math.floor((min - step) / step) * step;
max = Math.floor((max + step) / step) * step;
return { min, max, step };
}
export function isoToFixed(iso: number, step: number) {
const d = Math.log10(step);
if (d >= 0)
return parseFloat(iso.toFixed(0));
return parseFloat(iso.toFixed(-d));
}
/* https://alienryderflex.com/hsp.html */
export function luminance(color: Color) {
let [r, g, b] = Color.toRgb(color);
r /= 255.0;
g /= 255.0;
b /= 255.0;
return Math.sqrt(0.299 * r * r + 0.587 * g * g + 0.114 * b * b);
}
export function prettyIso(iso: number, step: number) {
return Math.floor((iso - step) / step) * step + step;
}
export function toggleArray<T>(array: T[], elem: T) {
if (array.includes(elem))
return array.filter((x) => x !== elem);
else {
array.push(elem);
return array;
}
}