getY method

double getY()

Implementation

double getY() {
  double a = y / w;
  if ((a.isNaN) || (a.isInfinite)) {
    throw new RuntimeException("NotRepresentableException");
  }
  return a;
}