Home > CBM > BASIC > Keywords > Draw | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DRAW [ colorSource ] [ { TO | , } { [ + | - ] xVal [ , [ + | - ] yVal ] | distance ; angle } ] ...
*Due to a bug in the original C128 ROMs (start-up message says (c)1985), only positive/unsigned values of 0 to 65535 may be used.
Plot a set of points and/or line segments on the bitmap screen.
All parameters are optional. Without any, DRAW will plot a single pixel at the pixel cursor (the last point calculated in the previous bitmap command). Following the optional colorSource is a set of zero or more points. If the point is introduced with a comma (,) then a single pixel is plotted; otherwise (the point is introduced with the TO preposition) a line segment is plotted from the pixel cursor to the new specified point. A specified coordinate will be effected by SCALE if it is active. The resulting values may be off-screen, but are acceptable as long as they are legal as shown above. After each single point or line segment is plotted on the bitmap, the pixel cursor is updated (to the new point) so that the next point may refer to it; this allows you to easily draw a complex figure consisting of many connected lines and/or disconnected lines and/or isolated points. A point specified as a polar coordinate will always be relative to the pixel cursor. A point specified in rectangular form will normally be an absolute coordinate (independ of the pixel cursor), but using a + or - in front of the xVal or yVal will make that ordinate relative to the pixel cursor. The x and y ordinates are processed independantly; either, neither, or both ordinates of the rectangular coordinate may be in relative form (whichever use a leading + or -). Note these must be literal + and - characters in the command/statement. So if you have a variable X with a negative value (like -10) then it will be used an absolute coordinate unless you preced it with + or - sign. You normally wouldn't put a - sign unless you want to reverse the direction of the variable. So, for this example, use +X for a relative ordinate. As opposed to a variable, if you want to enter a literal negative value (for an absolute ordinate), you must enclose it in parentheses; otherwise it would interpreted as a relative ordinate. Sorry if that is confusing! If so, you need to play with relative and absolute coordinates to see clearly what I mean. The width plotted on screen of each dot (for a single point) or for all dots (for a line-segment) is controlled by a secret BASIC variable. That secret variable can be set with WIDTH. If it is 1, each dot will be 1 pixel wide; if it is 2, each dot will be 2 pixels wide. Any floating-point numbers will first be converted to integers (see INT). If any value is out-of-range (see above) an ILLEGAL QUANTITY ERROR is generated. If no bitmap has been setup (see GRAPHIC), a NO GRAPHICS AREA is generated. Example of optional colorSource and optional point:
Example of relative rectangular and polar coordinate:
Example of line segments:
© H2Obsession, 2014 |