1 (edited by FEAR-Di3el 2013-03-04 14:38:44)

Topic: How to draw a thin line of GUI? (client source)

How to in source draw a thin line of GUI? From one position to another.

2

Re: How to draw a thin line of GUI? (client source)

Either draw some small rectangle or a real line

Graphics()->LinesBegin();
IGraphics::CLineItem Line(x0, y0, x1, y1);
Graphics()->LinesDraw(&Line, 1);
Graphics()->LinesEnd();

3

Re: How to draw a thin line of GUI? (client source)

Big thanks

4

Re: How to draw a thin line of GUI? (client source)

What's next? Laser pointers?

Not Luck, Just Magic.