Saturday, May 18, 2024

🚧 Next version of BAM in the works: improvements to DRAW

The following code sample and screenshots describe the impact of enhancements to DRAW:

SCREEN _NEWIMAGE(41,41,17)

DIM A$(1 TO 10) = {"U","E","R","F","D","G","L","H"}

FOR A% = 0 TO 360
  DRAW "B M 20,20"
  DRAW "TA" + A% + "B U18"
  PSET (POINT(0),POINT(1)),62
NEXT I%

FOR I% = 1 TO 8
  DRAW "B M 20,20"
  DRAW A$(I%) + "17"
NEXT I%

CIRCLE (20,20),20,60

(Try the code above, or your own code, in the current "production" and "development" versions of BAM.)


Results in the current "production" version of BAM:



Results in the "development" version of BAM:



No comments:

Post a Comment

🖥A "10PRINT" Variant, BAMified

This program by Charlie Veniot is a port and mod of Ian Witham's C64 program found in this YouTube video. New colours are randomly proje...