Thank you for the GLB Programer's Reference Book, MapChap. It is a valuable resource that I will reference often. The section on 3D graphics is especially interesting to me.
-CW
-CW
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
SETSCREEN 1366,768,FALSE
GLOBAL sw%,sh%,sm%
GETSCREENSIZE sw,sh
sm = sw/2
SETCURRENTDIR(GETCURRENTDIR$()+"Media")
GLOBAL fontkey = GENFONT(),fw%,fh%
LOADFONT "smalfont.png",fontkey
SETFONT fontkey
GETFONTSIZE fw,fh
PRINT "Ascii code 38 is the 'AND' sign,",50,fh,TRUE
LOCAL a$ = "&"
PRINT "Let a$ = "+CHR$(34)+"&"+CHR$(34)+". Here is a$-> |"+a$+"|",50,fh*2,TRUE
PRINT "It is also CHR$(38). Here is CHR$(38)-> |"+CHR$(38)+"|",50,fh*3,TRUE
PRINT "The symbol is missing from GLbasic font creation utility.",50,fh*5,TRUE
PRINT "Is there a reason, or is it just a minor oversight?",50,fh*6,TRUE
PRINT " Press Key to Exit.",50,fh*8,TRUE
SHOWSCREEN;KEYWAIT