/**
 * @public
 * As per Math.hypot, expect with 2 args.
 *
 * @remarks
 * See {@link mathHypot2}.
 */
export function mathHypot2(a: number, b: number): number
{
    return Math.sqrt(a * a + b * b);
}