Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SCHOOL'S OUT! Wait...
#1
School's out for summer. That means my main mode of internet has just run out :crying: My parents won't get internet because they don't trust the outside world, or me (which is ridiculous because the only internet-capable computer is sitting in the middle of the kitchen). Also, if we would get internet, we are too far out of the city (about 1/4 mile) to recieve Wireless. I guess I won't be around for a while.
Quote:As a side note, I wish I was a robotic zombie ninja pirate.
Reply
#2
Well that sucks. Tongue
Reply
#3
Write this down on paper, download FB at your house, type this in, and run it, and tell them you wanna learn about fractals.


Code:
Option Explicit

ScreenRes 800, 600

Type vector_Int
  As Integer x, y
  
End Type

Dim As vector_Int pnt( 2 ), pnt_Current
Dim As Integer nextJump

pnt( 0 ).x = 400   : pnt( 0 ).y = 20

pnt( 1 ).x = 20    : pnt( 1 ).y = 580

pnt( 2 ).x = 780   : pnt( 2 ).y = 580

pnt_Current.x = 400: pnt_Current.y = 300

Do
  PSet( pnt_Current.x, pnt_Current.y ), 15
  
  nextJump = Int( Rnd * 3 )
  
  pnt_Current.x = ( ( pnt( nextJump ).x + pnt_Current.x ) \ 2 )
  pnt_Current.y = ( ( pnt( nextJump ).y + pnt_Current.y ) \ 2 )
  
Loop Until MultiKey( 1 )
Reply
#4
grow long hair and get a trenchcoat, then your parents will consider computing a lesser evil.
EVEN MEN OF STEEL RUST.
[Image: chav.gif]
Reply
#5
Quote:grow long hair and get a trenchcoat, then your parents will consider computing a lesser evil.
;_; . . .
Reply
#6
Quote:download FB at your house

Might be hard without internet ;P
Reply
#7
Quote:
cha0s Wrote:download FB at your house

Might be hard without internet ;P

pwned :king:
Itch-Five Design - Your source for free, well designed, web design.
- - - - - - - - - - - - -
Quote:I use QB religiously. Too bad I'm an athiest.
Reply
#8
oh yeah? well the sierpinski gasket pwns both of you!
Reply
#9
Quote:oh yeah? well the sierpinski gasket pwns both of you!
Quote:Chaos game

An interesting method of creating the 2 dimensional gasket comes from a problem in chaos theory.
Uhh...wow: Counter-Pwnz
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)