OK, I'm pulling my hair out here. I've got some VERY simple code that just doesn't seem to be doing what it should. Can someone please explain why the following doesn't produce a line with ends at the two dots? It instead produces a line which starts at one dot, connects with the second dot, but continues through on the other side (try it to see what I mean).
fx = 50 fy = 90 tx = 100 ty = 200 DrawLine fx , fy , tx , ty, 1 DrawOval tx , ty , 1 , 1 DrawOval fx , fy , 1 , 1 Flip WaitKey()