transform coordinate system

  • Thread starter Thread starter Tim Bücker
  • Start date Start date
T

Tim Bücker

Hello.

I want to set my coordinate-system-origin (0/ 0) to the bottom-left corner.
How is that done in C# the best way?

Thanks a lot in advance!
Greetings,
Tim.
 
I assume you are using the GDI + wrapper of System.Drawing.dll.

You may call TranslateTransform on the System.Drawing.Graphics instance
to perform a translation.
 
Back
Top