A C G M P S T V

S

setCoordinate(int, double) - Method in class Point2D
Modifier method allows client (or this) to set a new value for either coordinate
setCoordinates(double[]) - Method in class Point2D
Sets coordinates to (c[0],c[1])
setCoordinates(Point2D) - Method in class Point2D
Modifier methood that sets coordinates of this object to the same as the Point2D parameter
setElements(double[][]) - Method in class Matrix2D
Assigns new values to the Matrix2D object using the elements of the array parameter
setLocation(double, double) - Method in class Point2D
Modifier method allows client (or this) to set new coordinates
setRotation(double) - Method in class Transform2D
Modifier method that sets the matrix transform required to rotate the preimage around the origin: cos a -sin a 0 / sin a cos a 0 / 0 0 1
setScale(double) - Method in class Transform2D
Modifier method that sets the matrix transform to s 0 0 / 0 s 0 / 0 0 1
setTransform2D(Matrix2D) - Method in class Transform2D
Modifier method that sets the elements of matrix transform to the elements of the matrix parameter.
setTranslation(Point2D) - Method in class Transform2D
Modifier method that sets the matrix transform to 1 0 p.x / 0 1 p.y / 0 0 1
sub(Matrix2D) - Method in class Matrix2D
Constructs and returns a new Matrix2D object consisting of the difference of the elements in the same corresponding position
sub(Transform2D) - Method in class Transform2D
Returns the difference of the matrix elements of this Transform2D object (minuend) and the parameter (subtrahend) by calling Matrix2D's sub method.

A C G M P S T V