Home | History | Annotate | Download | only in crop

Lines Matching defs:corners

29      * corners.
30 * The order of the corners in the float array is:
36 * @param r the rectangle to get the corners of
37 * @return the float array of corners (8 floats)
41 float[] corners = {
47 return corners;
65 * Takes an array of 2D coordinates representing corners and returns the
104 * Takes a point and the corners of a rectangle and returns the two corners
108 * @param corners the corners of the rectangle
109 * @return two corners representing the side of the rectangle
111 public static float[] closestSide(float[] point, float[] corners) {
112 int len = corners.length;
117 corners[i], corners[(i + 1) % len],
118 corners[(i + 2) % len], corners[(i + 3) % len]
153 * @param rotatedRect corners of a rotated rectangle