Пример #1
0
        public void postRotate(float pAngle)
        {
            Transformation transformation = TransformationPool.obtain();

            this.postConcat(transformation.setToRotate(pAngle));
            TransformationPool.recycle(transformation);
        }
Пример #2
0
        public void postTranslate(float pX, float pY)
        {
            Transformation transformation = TransformationPool.obtain();

            this.postConcat(transformation.setToTranslate(pX, pY));
            TransformationPool.recycle(transformation);
        }
Пример #3
0
        public void postScale(float pScaleX, float pScaleY)
        {
            Transformation transformation = TransformationPool.obtain();

            this.postConcat(transformation.setToScale(pScaleX, pScaleY));
            TransformationPool.recycle(transformation);
        }