' FGRAPH.BI -- by Gary Neal, Jr. ' ' Include file for FGRAPH.BAS. ' Draws Circles and Lines on the graphics screen using floating point math. ' ' Returns the angleIncr value for other modules. ' DECLARE FUNCTION GetAngleIncr! () ' Sets the angleIncr value for other modules. ' DECLARE SUB SetAngleIncr (newIncr AS SINGLE) ' DrawCircle ' Draws a circle on the graphics screen using floating point math. ' DECLARE SUB DrawCircle (xOffset%, yOffset%, radius%, C%) ' Line function ' ' Draws a line on the graphics screen using floating point math. ' DECLARE SUB DrawLine (X1%, Y1%, X2%, Y2%, C%)