public void postRotate(float pAngle) { Transformation transformation = TransformationPool.obtain(); this.postConcat(transformation.setToRotate(pAngle)); TransformationPool.recycle(transformation); }
public void postTranslate(float pX, float pY) { Transformation transformation = TransformationPool.obtain(); this.postConcat(transformation.setToTranslate(pX, pY)); TransformationPool.recycle(transformation); }
public void postScale(float pScaleX, float pScaleY) { Transformation transformation = TransformationPool.obtain(); this.postConcat(transformation.setToScale(pScaleX, pScaleY)); TransformationPool.recycle(transformation); }