public class Quadrant extends Object
1 | 0 --+-- 2 | 3
| Modifier and Type | Field and Description |
|---|---|
static int |
NE |
static int |
NW |
static int |
SE |
static int |
SW |
| Constructor and Description |
|---|
Quadrant() |
| Modifier and Type | Method and Description |
|---|---|
static int |
commonHalfPlane(int quad1,
int quad2)
Returns the right-hand quadrant of the halfplane defined by the two quadrants,
or -1 if the quadrants are opposite, or the quadrant if they are identical.
|
static boolean |
isInHalfPlane(int quad,
int halfPlane)
Returns whether the given quadrant lies within the given halfplane (specified
by its right-hand quadrant).
|
static boolean |
isNorthern(int quad)
Returns true if the given quadrant is 0 or 1.
|
static boolean |
isOpposite(int quad1,
int quad2)
Returns true if the quadrants are 1 and 3, or 2 and 4
|
static int |
quadrant(double dx,
double dy)
Returns the quadrant of a directed line segment (specified as x and y
displacements, which cannot both be 0).
|
static int |
quadrant(Point p0,
Point p1)
Returns the quadrant of a directed line segment from p0 to p1.
|
public static final int NE
public static final int NW
public static final int SW
public static final int SE
public static int commonHalfPlane(int quad1,
int quad2)
public static boolean isInHalfPlane(int quad,
int halfPlane)
public static boolean isNorthern(int quad)
public static boolean isOpposite(int quad1,
int quad2)
public static int quadrant(double dx,
double dy)
IllegalArgumentException - if the displacements are both 0public static int quadrant(Point p0, Point p1)
IllegalArgumentException - if the points are equalCopyright © 2015 Revolution Systems Inc.. All rights reserved.