inCirc static method

double inCirc(
  1. double x
)

Implementation

static double inCirc(double x) => 1 - sqrt(1 - pow(x, 2));