- canvas - Class in cs1.android
-
Collection of methods for drawing geometric shapes
as well as for capturing touch and keypad input from the user.
- canvas() - Constructor for class cs1.android.canvas
-
- Circle - Class in cs1.android
-
Representation of a circle drawn on the canvas.
- Circle(double, double, double) - Constructor for class cs1.android.Circle
-
Creates a circle of the given radius and default color
centered at the given coordinates.
- Circle(Point, double) - Constructor for class cs1.android.Circle
-
Creates a circle of the given radius and default color
centered at the given point.
- Circle(Point, Point) - Constructor for class cs1.android.Circle
-
Creates a circle of the default color going through the
given center and point on the circumference.
- clear() - Static method in class cs1.android.canvas
-
Clears the canvas and removes all shapes.
- contains(Point) - Method in class cs1.android.Circle
-
Determines if this circle contains the given point.
- contains(Point) - Method in class cs1.android.Image
-
Determines if this image contains the given point.
- contains(Point) - Method in class cs1.android.Line
-
Determines if this line contains the given point.
- contains(Point) - Method in class cs1.android.Point
-
Determines if this point contains the given point.
- contains(Point) - Method in class cs1.android.Rectangle
-
Determines if this rectangle contains the given point.
- contains(Point) - Method in class cs1.android.Shape
-
Determines if this shape contains the given point.
- contains(Point) - Method in class cs1.android.Square
-
Determines if this square contains the given point.
- contains(Point) - Method in class cs1.android.Text
-
Determines if this text contains the given point.
- contains(Point) - Method in class cs1.android.Triangle
-
Determines if this triangle contains the given point.
- cs1.android - package cs1.android
-