by the way where is complete code ?
Here with some untested, undocumented graphics commands:(attached)
OK I tested download and seems to be working on my machine OK.
All the Tests included in Folder are working on my machine.
New untested graphics:
Ink command for setting drawing or printing color
Ink 3 arg _RGB or 4 arg _RGB
eg Ink 255, 0, 0 'for red
eg Ink 255, 255, 0, 128 'for yellow alpha layer
Paper command for back color, 3 arg only
for white:
Paper 255, 255, 255
This was late last night I forgot if Paper does a Cls or just sets Shared as _unsigned long Paper, Ink
So for pset use:
Pix x, y
Line:
Line x1, y1, x2, y2
Box:
Box x1, y1, Width, Height
FBox (filled box)
FBox x1, y1, w, h
Circle:
Circ x, y, r
Filled Circle:
Fcirc x, y, r
Filled Triangle (you can make your own triangles with 3 lines)
Ftri x1, y1, x2, y2, x3, y3
Man was I in crazy state yesterday, low blood sugar? We were testing mom's heart monitor for over an hour trying to get the thing to send a test reading. Get to try again later this week with more tech guys on the other end of phone. Every minute of test mom asks how long is this going to take why are we doing this, meanwhile the is beeping like a loud annoying timer gone off, eventually the dog joins in with barking Yikes! what a symphony.
So my mind got a bit scattered for posts above.
Oh crap, I do want transparent paper available too, for printing with clear background color.
Yeah so I was testing random pix with random color and got such an unrandom result I threw in the towel for the day. This was after a session of updating Help for SB1 in which the words would not line up for me in head and not working well with Notepad++ on extra wide because I don't know what width others would be reading the text.
WARNING: the only places where numeric expressions are evaluated are:
Main:
var = expression
+ Sumvar, a2, a3, a4... and Sumvar = total of Args after first
- MinusVar, a2, a3, a4 MinusVar = a2 - a3 - a4...
* Prodvar, a
+= var, change < literal number only, change would be easy to run through eval
Yeah run numeric args through eval for Loc, At, Tag,... why am I not doing this?