.: 8.29.2004
Everyone comment to this with what is currently on your clipboard (in otherwords, hit ctrl+v or right click and go to paste in the comment box.)
Mine is: see I wear size 13 shoes
I was talking about being Jewish and having big.. feet.
Comments:
<< Home
To start you all off, here's my clipboard now:
1063-1684-4808-2960-2670-2259
It's an after effects cd key. heheh.
--geoff
1063-1684-4808-2960-2670-2259
It's an after effects cd key. heheh.
--geoff
http://polling-onair.mtv.com/servlet/viewsflash?song=Breaking%20the%20Habit&pollid=vma2004%5Fnominees%5FviewersChoice%21nominees%5FviewersChoice&results=%3Dresult%3DOK&cmd=tally
It's me using Mozilla Firefox's kick-ass tab browsing to mass vote on the VMAs.
It's me using Mozilla Firefox's kick-ass tab browsing to mass vote on the VMAs.
class Circle
{
int tlX,tlY,incX,incY,size,timeDelay;
boolean addX, addY;
public Circle(int s, int x, int y, int td)
{
incX = x;
incY = y;
size = s;
addX = true;
addY = false;
tlX = 400;
tlY = 300;
timeDelay = td;
}
private void delay(double n)
{
for (double k = 1; k < n; k+=0.001);
}
public void drawCircle(Graphics g,Circle c)
{
int counter=1;
g.setColor(Color.blue);
while (counter<=1000)
{
g.drawOval(tlX,tlY,size,size);
if (addX)
tlX=tlX+incX;
else
tlX=tlX-incX;
if (addY)
tlY=tlY+incY;
else
tlY=tlY-incY;
counter++;
c.hitEdge();
delay(timeDelay);
}
}
public void hitEdge()
{
int centerX = tlX + size/2;
int centerY = tlY + size/2;
boolean flag = false;
if (centerX < size + incX)
{
addX = true;
flag = true;
}
if (centerX > 800 - (size + incX))
{
addX = false;
flag = true;
}
if (centerY < size + incY)
{
addY = true;
flag = true;
}
if (centerY > 600 -(size + incY))
{
addY = false;
flag = true;
}
if(flag)
{
incX = (int) Math.round(Math.random() * 7 + 5);
incY = (int) Math.round(Math.random() * 7 + 5);
}
}
public void setTLX(int x)
{
tlX = x;
}
public void setTLY(int y)
{
tlY = y;
}
}
Yay for Comp sci labs!...btw...that is not the answer!
and i actually did it...jsut had to make a separate circle class! STFU YOU CHEATERS!
{
int tlX,tlY,incX,incY,size,timeDelay;
boolean addX, addY;
public Circle(int s, int x, int y, int td)
{
incX = x;
incY = y;
size = s;
addX = true;
addY = false;
tlX = 400;
tlY = 300;
timeDelay = td;
}
private void delay(double n)
{
for (double k = 1; k < n; k+=0.001);
}
public void drawCircle(Graphics g,Circle c)
{
int counter=1;
g.setColor(Color.blue);
while (counter<=1000)
{
g.drawOval(tlX,tlY,size,size);
if (addX)
tlX=tlX+incX;
else
tlX=tlX-incX;
if (addY)
tlY=tlY+incY;
else
tlY=tlY-incY;
counter++;
c.hitEdge();
delay(timeDelay);
}
}
public void hitEdge()
{
int centerX = tlX + size/2;
int centerY = tlY + size/2;
boolean flag = false;
if (centerX < size + incX)
{
addX = true;
flag = true;
}
if (centerX > 800 - (size + incX))
{
addX = false;
flag = true;
}
if (centerY < size + incY)
{
addY = true;
flag = true;
}
if (centerY > 600 -(size + incY))
{
addY = false;
flag = true;
}
if(flag)
{
incX = (int) Math.round(Math.random() * 7 + 5);
incY = (int) Math.round(Math.random() * 7 + 5);
}
}
public void setTLX(int x)
{
tlX = x;
}
public void setTLY(int y)
{
tlY = y;
}
}
Yay for Comp sci labs!...btw...that is not the answer!
and i actually did it...jsut had to make a separate circle class! STFU YOU CHEATERS!
"Back off I'll take you on
Headstrong to take on anyone
I know that you are wrong
Headstrong we're headstrong
Back off I'll take you on
Headstrong to take on anyone
I know that you are wrong and this is not where you belong
I can't give everything away
I won't give everything away."
-Trapt ~ "Headstrong"
Headstrong to take on anyone
I know that you are wrong
Headstrong we're headstrong
Back off I'll take you on
Headstrong to take on anyone
I know that you are wrong and this is not where you belong
I can't give everything away
I won't give everything away."
-Trapt ~ "Headstrong"
Women will never be equal to men until they can
walk down the street with a bald head and a beer
gut, and still think they are sexy.
...not too sure why that was copied...
dad must have been on my computer again.
Post a Comment
walk down the street with a bald head and a beer
gut, and still think they are sexy.
...not too sure why that was copied...
dad must have been on my computer again.
<< Home




