Let's say I have a bitmap 500px and I'm drawing a line at run time on it. When the line max point is 250px, it normally stops right in the middle of the bitmap (since the width of the bitmap is double the size of the line).
Is there a way to tell the bitmap or the Graphics.Drawline or using Matrix (not sure) to have the line go all the way til the end, like if I were zooming in?
I'm reading about Matrix Transformation, is that the right way to achieve that?