export const opposite = (v: number, center: number = 0) => {
	return center + center - v;
};
