havFromSin static method

num havFromSin(
  1. num x
)

Implementation

static num havFromSin(num x) => (x * x) / (1 + sqrt(1 - (x * x))) * .5;