Topic : The GFA-Basic Compendium Author : GFA Systemtechnik GmbH Version : GFABasic.HYP v2.98 (12/31/2023) Subject : Documentation/Programming Nodes : 899 Index Size : 28056 HCP-Version : 3 Compiled on : Atari @charset : atarist @lang : @default : Document not found @help : Help @options : +g -i -s +z @width : 75 @hostname : STRNGSRV @hostname : CAB @hostname : HIGHWIRE @hostname : THING View Ref-FilePSET x,y,f x, y, f: iexp PSET corresponds to the PLOT command, and will set the point x,y to color f, which can take values from 0 to 15, depending on the current screen resolution. Example: FOR x%=0 to 15 FOR y%=0 to 100 STEP 2 PSET x%,y%,x% NEXT y% NEXT x% --> Draws vertical dotted lines in the 15 colors. Line-A Plot Pixel+