Click here to Skip to main content
15,886,752 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello!

I have the following piece of code:

C++
Pen pen(Color(255,0,0,255);
pen.SetWidth(3);
    
m_graphics->ScaleTransform(0.1, 0.1);
m_graphics->DrawLine(&pen, 0, 0, 100, 100);


The problem is, that line with also going transformation, so instead of having line with 3 I am having line width 0.3, converted by system to 1.

Is there any way to ignore transformation of line with?

Thanks!
Posted

1 solution

Try to use pen width less or equal to zero. It will work as you wanted, representing the metaphor of "infinitely thin" lines while scaling.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900