Hello!
Does anyone know a nice way to draw on a graphics-object with an origin at the bottom-left corner
+
|
|
0/0 -- +
I know that the default origin is top-left and positive coordinates will extent to bottom-right:
0/0 -- +
|
|
+
Any ideas would be greatly appreciated...
Greetings,
chris

different drawing origin
IrvineLewis
Thanks again,
.chris
#LS
Matrix m = new Matrix();
m.Scale(1F, -1F);
m.OffsetY = -ClientSize.Height;
graphics.Transform = m;
I did not test -- check the sign on the offset.
Frank
Ben Kitzelman
I'll test it as soon as possible!
Greetings,
chris
angelLee
robbyduffy