Graphics.Rotate
From Xojo Documentation
You are currently browsing the old Xojo documentation site. Please visit the new Xojo documentation site! |
Rotates the drawing context by the specified angle (in radians) around the origin point (usually 0,0). This only affects subsequent drawing. Any drawing done before the Rotate method call is not rotated.
New in 2020r2
Supported for all project types and targets.
Rotates the drawing context at the x and y coordinates by the specified angle (in radians). This only affects subsequent drawing. Any drawing done before the Rotate method called is not rotated.
Notes
Use Translate to move the origin.
Support for Rotate in Desktop and Console applications was added in 2021r1.
When used in combination with Scale and/or Translate to draw into a PDFDocument, Rotate may behave differently than it does when drawing to normal Graphics object because the rotation is being handled by the PDF engine itself.
Sample Code
From within an MobileCanvas.Paint event handler: