_TITLE "Test Using Window for Cartesian Coordinate System x = -100 to 100, y = -100 to 100" 'It seems all graphics commands convert x, y to window system BUT...
'Mouse and _PrintString do not convert! BUT...
'Somebody setup a PMAP system that will do these conversions both to grapghics coordinate system and back
' convert mouse qbx, qby to graphics x, y use
' PMAP(qbx, 2), PMAP(qby, 3)
' And to print something at the graphics location use
' PMAP(graphicsX, 0), PMAP(graphicsY, 1) to _PRINTSTRING to a graphics location
CONST xmax
= 700, ymax
= 700, red
= &HFFFF0000, grn
= &HFF009900, blu
= &HFF0000AA CONST tlx
= -100, tly
= 100, brx
= 100, bry
= -100 ' Cartesian Coordinate System corners for WINDOW command
WINDOW (tlx
, tly
)-(brx
, bry
) ' converts QB csreen to Cartesian Coodianate System a = atan360(my, mx) 'mouse angle to origin
r
= INT((mx
* mx
+ my
* my
) ^ .5) LINE (0, 0)-(mx
, my
), grn
'hypotenuse = radius LINE (0, 0)-(mx
, 0), blu
' r*cos LINE (mx
, 0)-(mx
, my
), red
' r*sin arc
0, 0, 10, 0, _R2D(a
), &HFFFFFF00 'yellow arc
' A regular graphic draw still works correctly in a Cartesian Window System!
'note: degrees start due East = 0 and go clockwise: South = 90, West = 180, North = 270
SUB arc
(x
, y
, r
, degStart
, degStop
, c~&
)
DIM rs
, re
, a
, ax
, ay
, lastx
, lasty
'x, y origin, r = radius, c = color
'degStart is first angle clockwise from due East = 0 degrees
' arc will start drawing there and clockwise until degStop angle reached, unless in Cartesain Window
arc x, y, r, degStart, 360, c~&
arc x, y, r, 0, degStop, c~&
lastx = ax: lasty = ay
'need to match degrees going around clockwise up to full circle