Skwirl...

Community Forums/Graphic Chat/Skwirl...

Doggie(Posted 2010) [#1]
.


Matty(Posted 2010) [#2]
I'm not sure what the use of this is?


Doggie(Posted 2010) [#3]
.


Kryzon(Posted 2010) [#4]
Great dot, loved it. 5 stars.


AvestheFox(Posted 2010) [#5]
the dot is truly breathtaking

How many lines of code did it take to make it? xD


Doggie(Posted 2010) [#6]
..

I'm getting better !

DOG


AvestheFox(Posted 2010) [#7]
Hate to burst your bubble, but I'm ahead of you!
.1 of a pixel to be precise ;)

Global dot_x#, dot_y#

Graphics 320,240,32,2
AppTitle "See Dot Run"
SetBuffer BackBuffer()

While Not KeyHit(1)
Flip
ClsColor 0,0,75
Cls

dot_x# = dot_x# + .1
dot_y# = dot_y# + .1

place_dot(dot_x#,dot_y#)
If dot_y#>240 Then RuntimeError "The '.' has Left the screen!" 

Wend
End

Function place_dot(x#,y#)
Text x,y,"."
End Function



puki(Posted 2010) [#8]
I think he originally posted a 3D picture of a squirrel, but I never got to see it with my 3D glasses on.


Doggie(Posted 2010) [#9]
Yeah puki, but it was just to advertise the anaglyph filter I built from spare parts(code archive) ...it wasn't really about a skwirl.

@AvestheFox, That's not bad but I think it would be better if the dot animated as it moved down the screen. More so it would look as if it was rolling.