• Simplest way to draw slanted lines in Java?
    1 replies, posted
-snip- I figured it out
[code] int x = 0; int y = 0; int length = 100; while(x<length) { DrawPoint(x, y); x++; y++; } [/code]
Sorry, you need to Log In to post a reply to this thread.