sinFromHav static method

double sinFromHav(
  1. double h
)

Given h == hav(x), returns sin(|x|).

Implementation

static double sinFromHav(double h) => 2 * sqrt(h * (1 - h));