Bug #805
The circle command doesn't use the grahpics cursor for positioning as it should.
Start date:
07/27/2021
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
(I'm actually testing 1.0.0 B9 u16+... more that u16, but not specified)
Instead, it defaults to 0,0 if the center coordinates aren't specified.
Example 1:
Gr Locate 100,100 ' place center at 100,100 Circle ,,20
Example 2:
Curs Off : Flash Off Gr Locate 100,100 Draw To 300,300 Circle ,,20 Locate 10,0: Print "The circle should be centered at 300,300 (vs. 0,0)." Locate 10,1: Print "(at the end of the line)" Wait Key Locate 10,3 : Print "Like this:" Circle 300,300,20 Wait Key
Updated by David Baldwin over 1 year ago
Fixed : Check for 'undefined' coords was missing. Also fixed Box, Bar, Disc, Ellipse and Filled Ellipse as they had same problem.
Updated by Brian Flanagan over 1 year ago
- Status changed from Resolved to Closed
Working in 1.0.0 (B10) u16
Thanks, Dave!