A C I P T 

A

addPoint(int, int) - Method in class contest.Polygon
Appends the point with the given x- and y-coordinate to this polygon.

C

contains(int, int) - Method in class contest.Polygon
Tests if the point with the given x- and y-coordinate is contained in this polygon.
contest - package contest
 

I

intersects(int, int, int, int) - Method in class contest.Polygon
Tests if the given rectangle is contained in this polygon.

P

Polygon - Class in contest
A polygon is described by a sequences of points.
Polygon() - Constructor for class contest.Polygon
Initializes this polygon to be empty, that is, it contains no points at all.
Polygon(String) - Constructor for class contest.Polygon
Initializes this polygon to consist of the line segments defined by the points specified by the given string.

T

translate(int, int) - Method in class contest.Polygon
Translates the points of the polygon by the given deltaX along the x-axis and by the given deltaY along the y-axis.
A C I P T