Search found 2 matches

by Bp103
Sat Mar 03, 2012 9:16 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: How do you make a line without the line command?
Replies: 3
Views: 9895

You cannot use graphics like PSET to draw a line in text mode. You can only draw text lines using ASCII characters. Yes. x=5 y=5 r=4 for i=0 to 360 x2=x+(r*sin(i*3.141/180)) y2=y+(r*cos(i*3.141/180)) locate y2,x2 print"x" next Also It was a snip from my FreeBasic project and I let the rgb...
by Bp103
Sat Mar 03, 2012 11:01 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How do you make a line without the line command?
Replies: 3
Views: 9895

How do you make a line without the line command?

I've been trying to figure out how to recreate the line command in Qbasic for a while now but I've been failing at it. I've also googled for this too but it turns up useless results that all use a line command of some sort. how do you make a line from point(x,y) to point(x2,y2) with out the line com...