Post Reply 
difference between command1 and command1_p
04-13-2018, 10:07 AM (This post was last modified: 04-13-2018 10:11 AM by DrD.)
Post: #5
RE: difference between command1 and command1_p
(04-13-2018 05:02 AM)Joe Horn Wrote:  
(04-12-2018 08:05 PM)DrD Wrote:  The user guide offers this (Program Commands Page 637):
... the pixel 0, 0 is the top left pixel of the GROB, and 320, 240 is the bottom right. ...

ONE of those pairs must be wrong, since the screen isn't 321 × 241. The same bottom-right coordinates of 320, 240 are also cited on page 642.

You're right, that's wrong, and that paints a completely different picture on this description. I mean, who would have even thought there would be any errors in the manual?Smile

To the trained eye, as anyone can plainly see, the top left coordinate is (0,0) and the bottom right coordinate is (319,239), totaling (x,y) = (320,240) pixels:

Code:

EXPORT PIX()
BEGIN 
  RECT();
  PIXON_P(0,0,#FF0000h); 
  PIXON_P(319,239,#FF0000h);
  WAIT;
END;

-Dale-
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: difference between command1 and command1_p - DrD - 04-13-2018 10:07 AM



User(s) browsing this thread: 1 Guest(s)