sin_quare static method

double sin_quare(
  1. double a
)

sin的平方 the power of sin(x)

Implementation

static double sin_quare(double a) {
  return sin(a) * sin(a);
}