isNorthern static method

bool isNorthern(
  1. int quad
)

Returns true if the given quadrant is 0 or 1.

Implementation

static bool isNorthern(int quad) {
  return quad == NE || quad == NW;
}