I have a shape e-g, Rectanle and i want to rotate it at an angle X and want to get the updated rotated points of shape.
Currently for rotation of object i am using canvas.rotate, but the original points remains the same; not the rotated one. I am using this code.
canvas.save();
canvas.rotate(angle, Pivate.x, Pivate.y);
canvas.drawRect(left, top, right, bottom, redPaint);
canvas.restore();
Any help will be appreciated...