Search found 2080 matches

by Dr_D
Jun 11, 2005 7:34
Forum: General
Topic: Help me!!!!
Replies: 12
Views: 6468

If it's a .bmp image, or a .bsv image(QBasic), you can use BLOAD. It's described in:

Code: Select all

FreeBASIC/DOCS/GFXLIB.TXT
;)
by Dr_D
Jun 09, 2005 4:00
Forum: Beginners
Topic: an idea for a 3D game STK for freebasic?
Replies: 17
Views: 8729

I'm sure someone will make a 3D game-maker thingy n FB someday. It wouldn't hurt to learn about some math while your waiting though. Maybe you could even start it yourself.
by Dr_D
Jun 07, 2005 6:20
Forum: Windows
Topic: Can I make an FB app that doesn't create a console window?
Replies: 14
Views: 8082

Could you post a link to the compiled program also?



btw: If you're using FBIDE, then all you need to do is click view/settings/compiler.

The command line should be this...

<fbc> <filename> -s gui

Just remember to remove that -s gui, if you want to use the console for anything. ;)
by Dr_D
Jun 01, 2005 1:56
Forum: General
Topic: fbgl proof of concept
Replies: 14
Views: 5555

Is the rgba function still in CVS? I get a variable not declared error on rgba().
by Dr_D
May 29, 2005 9:50
Forum: Archive
Topic: a small preview
Replies: 29
Views: 19326

Yeah, what he said! :P
by Dr_D
May 28, 2005 18:46
Forum: Documentation
Topic: Excellent!
Replies: 22
Views: 15634

Well, I used pm's to send ideas back & forth to Rel, and to spare myself embarassment when i thought I found a bug... that wasn't actually a bug... just me staying up too long and losing my bearings. lol I'm not whining though. I do like it without all the fluffy stuff. This page loads damn fast...
by Dr_D
May 28, 2005 8:17
Forum: Documentation
Topic: Excellent!
Replies: 22
Views: 15634

Heya... Are private messages busted, or we just wont have em here?
by Dr_D
May 28, 2005 1:49
Forum: Sources, Examples, Tips and Tricks
Topic: FB can compile itself, it should be able to draw itself
Replies: 11
Views: 10655

Let's see the pics! ;)
by Dr_D
May 28, 2005 0:13
Forum: Archive
Topic: a small preview
Replies: 29
Views: 19326

Nice job on those tiles. They look really good.
by Dr_D
May 28, 2005 0:11
Forum: General
Topic: How can offsetting be done??
Replies: 3
Views: 5615

Dim glMatrix(15) as Single 'You can also load it into a 2 dimensional array.... 'glMatrix(3,3) or glMatrix(1 to 4, 1 to 4) 'Do Translation 'Do Rotation glGetFloatV GL_MODELVIEW_MATRIX @glMatrix(0) The last matrix that OpenGL used will be poked into glMatrix(). It's just like if you did the translat...