Home | History | Annotate | Download | only in shadows

Lines Matching defs:ROTATE

25   public static final String ROTATE = "rotate";
134 setOps.put(ROTATE, degrees + " " + px + " " + py);
135 mMatrix = SimpleMatrix.rotate(degrees, px, py);
140 setOps.put(ROTATE, Float.toString(degrees));
141 mMatrix = SimpleMatrix.rotate(degrees);
194 preOps.addFirst(ROTATE + " " + degrees + " " + px + " " + py);
195 return preConcat(SimpleMatrix.rotate(degrees, px, py));
200 preOps.addFirst(ROTATE + " " + Float.toString(degrees));
201 return preConcat(SimpleMatrix.rotate(degrees));
242 postOps.addLast(ROTATE + " " + degrees + " " + px + " " + py);
243 return postConcat(SimpleMatrix.rotate(degrees, px, py));
248 postOps.addLast(ROTATE + " " + Float.toString(degrees));
249 return postConcat(SimpleMatrix.rotate(degrees));
405 public static SimpleMatrix rotate(float degrees, float px, float py) {
412 public static SimpleMatrix rotate(float degrees) {