
FBGFX module for thinBasic, to handle 2D graphics [Archive]
Hi, I'm a bit worried about the speed.. The next plasma-like example runs very slow at higher resolution on my computer.
OS_Shell characters limit
The limit as t --> 0, of, sin(t)/t. By danbaron in forum Math: all about Replies: 1 Last Post : 28-07-2011 ...
FBGFX Plasma acceleration using asmosphere - thinbasic.com
Remember Me? Articles; Forum; FAQ; Calendar; Forum Actions. Mark Forums Read; Blogs; thinBasic/Resources
Example section 5.3 ff: circles, ellipse and more (page 50-53) …
'x = Sin(t) 'y = Cos(t) 'glBegin(GL_POINTS) 'glVertex2f(x, y) TBGL_Color(0,0,255) For t = 0.0 To 6.28 Step ...
Pyramide - thinbasic.com
Hello, Pyramide without texture. Uses "ui","math" #INCLUDE "gdip.inc" OpenWindow 400, 360 SetSmoothMode 2
Back to the root [Archive] - thinBasic: Basic Programming …
Dim a, t, xp, yp, zp, xs, ys, z, c As Single Long p c=2 Sub xCircle(x, y, w As Single) For a=0 To 36 Step 2 DrawPoint(x+Sin(a)*w,y+Cos(a)*w,2,&hFFFFFF) Next End Sub While IsWindow hwnd And KeyDown(%VK_ESCAPE)=0 Canvas_Clear (0) For t=1 To 12 Step .1 xp = 120 * Cos(t*c) yp = 120 * Sin(t*c) zp = p*Sin(t*16) + 200 xs = (200 + xp * 320 \ 160)
FBGFX module for thinBasic, to handle 2D graphics
Hi, I started developing FBGFX right away, when Eros gave me the full source to it. I've now added few commands to it, and it works nicely.
STL Container Size Limit Report - thinbasic.com
I wrote this little test program to find the size limits of some of the Standard Template Library Containers. I would like to see what differences, if any, and which situations machine to machine, OS to OS or bot
thinbasic Lionmodule :D
chapter one: my "first dll test" ;) hi dear thinbasic friends... this is no joke... from this day you can uses "lion" as dimension :)
Textbox Limit? - thinbasic.com
Hi, Is there a limit to the amount of text that a textbox control can hold? I was pasting a 1000 line ascii textfile of adventure text into a textbox control in my TAB program and it didn't all copy across...