
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
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.
FBGFX module for thinBasic, to handle 2D graphics
try this [code=thinbasic] 'Plasma-like effect with FBGFX uses "FBGFX" Dim w,h As Double w=200 h=150 Dim T1, T2 As QUAD
Mystery Curve - thinbasic.com
Oct 4, 2016 · 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 …
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.
Example section 5.3 ff: circles, ellipse and more (page 50-53)
Mar 3, 2010 · my first attempt :) page 50-53, section 5.3 ff. nearly exactly code conversion from stans PyOpenGL book. modified only a little the view point because there were no exactly …