Search found 117 matches

by aleofjax
Jan 03, 2009 21:53
Forum: Community Discussion
Topic: New iconset for FreeBASIC
Replies: 27
Views: 11024

Here's one I made for my .bi files!
http://freefile.kristopherw.us/uploads/ ... bi_ico.ico
by aleofjax
Jan 03, 2009 19:58
Forum: Sources, Examples, Tips and Tricks
Topic: Tree Growing in FreeBasic
Replies: 11
Views: 3159

Very cool, rollie! I always liked that mandala effect. It hints at sacred geometry while being aesthetically Zen. ^_^ I just went in and changed acouple of values to make it more dynamic, not to mention unique each time you run it. You can still catch glimpses of the six-pointed star sometimes, but ...
by aleofjax
Jan 03, 2009 10:57
Forum: Sources, Examples, Tips and Tricks
Topic: Fake 3D
Replies: 6
Views: 2627

You can "fake" a depth effect too, instead of having an isometric view. If you take your final x and y coordonates, and divide them by the distance from the viewer (z value maybe?), you get a nice vanishing point effect.
by aleofjax
Jan 03, 2009 10:47
Forum: Sources, Examples, Tips and Tricks
Topic: Tree Growing in FreeBasic
Replies: 11
Views: 3159

I decided to provide an example of posting a revision of the void. It's wierd, but you might find it interesting. I hope some of you out there like what I'm working on with this. If you do, I think this could become a very popular thread! So here is: First Seed -- A Revision of the void 'First Seed ...
by aleofjax
Jan 03, 2009 6:34
Forum: Community Discussion
Topic: chances of 16-bit compiler?
Replies: 11
Views: 4390

Sorry to barge in like this roook, but are you indeed in favor of seeing FreeBasic advance to include Native OOP ? If you just ignore me, I'll just walk away quietly.
by aleofjax
Jan 03, 2009 5:47
Forum: Sources, Examples, Tips and Tricks
Topic: Tree Growing in FreeBasic
Replies: 11
Views: 3159

Now Vince, I appreciate the prompt answer, but you broke the one rule I asked everyone to comply with. Every post must include a new revision of code. I included an example of how you might have made a revision relevant to your answer. I do ask that before you post again, you add some code to your p...
by aleofjax
Jan 02, 2009 19:32
Forum: Sources, Examples, Tips and Tricks
Topic: Tree Growing in FreeBasic
Replies: 11
Views: 3159

Cool, this is exactly the kind of response I was hoping for! I feel comfortable introducing a new concept to the table: The void version. I will not post the void version, as it is just an empty file. It is compatible with every programming language, every science, every art. If you feel in any way ...
by aleofjax
Jan 02, 2009 16:28
Forum: Sources, Examples, Tips and Tricks
Topic: Tree Growing in FreeBasic
Replies: 11
Views: 3159

Thank you for your participation guys! A couple of things to remember that will be important in keeping this project vital: 1 - Make sure you give each revision a unique name. 2 - Don't forget to mention which version you are revising. For example, we can call rolliebollocks' version "rolliebol...
by aleofjax
Jan 02, 2009 6:37
Forum: Archive
Topic: KwikSet Visual GUI Designer (0.5.2)
Replies: 109
Views: 25421

:o

I don't have kwikgui.bi, either. Did I miss something?
by aleofjax
Jan 02, 2009 6:02
Forum: Archive
Topic: KwikSet Visual GUI Designer (0.5.2)
Replies: 109
Views: 25421

I don't have "loaddisgn.bas". Where can I find that? Sorry for stepping into the conversation like this. I know I'm a nuicance :)
by aleofjax
Jan 02, 2009 4:54
Forum: Archive
Topic: KwikSet Visual GUI Designer (0.5.2)
Replies: 109
Views: 25421

I just grabbed this and started playing with it, so I may be speaking in complete ignorance, but does the "generate .bas" function work? I didn't see any .bas files when I tried to use it. I just wanted to see the output. I replied to this because the part about "writing itself" ...
by aleofjax
Jan 02, 2009 4:02
Forum: Sources, Examples, Tips and Tricks
Topic: Tree Growing in FreeBasic
Replies: 11
Views: 3159

Tree Growing in FreeBasic

I am starting this project for anyone to paticipate in. Anyone. There is only one requirement. Each post you submit in this thread must be accompanied by your latest version in a code block, like mine. No version my be posted more than once, so come up with a useful naming system so we can stay orga...
by aleofjax
Nov 05, 2008 18:28
Forum: General
Topic: Solving the Puzzle.
Replies: 10
Views: 2617

I reccomend loking up info on genetic algorithms. It's something I've just recently taken an interest in, so I couldn't give you details, but it seems to me that this puzzle is a perfect example of the type of problem genetic algorithms are made for.
by aleofjax
Nov 03, 2008 0:26
Forum: Community Discussion
Topic: cha0s is taking a hiatus from FB development
Replies: 31
Views: 8219

Wow, this is cool! A civil war has just begun! Key Issues : (afaict) OOP vs Backward Compatability Community Territory Project Leadership Where do the developers stand? Which way will cha0s take the project? Does anyone think they can do better? What needs to be preserved, and what needs to be gone?...
by aleofjax
Nov 02, 2008 23:05
Forum: Sources, Examples, Tips and Tricks
Topic: 6 DOF in OGL
Replies: 11
Views: 3904

Hmm, sounds like a speed issue, but I would think the frame limiter should keep that from happening... that's wierd. Does anyone see problem with the way I do my frame limiter? I never really tested it, I just assumed it would work. Dim As Single lastFrame = Timer . . . do Sleep (1000 / 60) - ((Time...