Bug #539
open
In Amiga mode, the Plot command draws dots that are of inconsistent size and shape.
Added by Brian Flanagan about 4 years ago.
Updated about 4 years ago.
Description
The following code should display a grid of evenly spaced dots, all exactly the same size.
The code works fine in AOZ/PC mode, but not in Amiga mode.
#manifest: "amiga"
#speed: "safe"
#displayWidth: 320
#displayHeight: 256
scrWidth=320 : scrHeight=256
Screen Open 0,scrWidth,scrHeight,32,Lowres
If Manifest$="amiga"
Palette $000,$0F0
Else
Palette $000000,$00FF00
End If
Flash Off : Curs Off : Cls 0
Ink 1 ' green
For x=0 To 319 Step 2
For y=0 To 199 Step 2
Plot x,y
Next y
Next x
- Status changed from New to Feedback
- Assignee changed from AOZ Studio Team to Francois Lionet
Not much can be done against that for the moment I am afraid. This is due to the scaling of a small screen for displaying in a larger screen, and the rounding in calculations.
This will be corrected when finally I have time to implement the real Amiga renderer.
Also available in: Atom
PDF