Help - Search - Members - Calendar
Full Version: Processing!
Smosh Forums > General > Website Design, Flash & Software Talk
3three3
So recently I have been getting into processing. For those of you who don't know its a Java based computer language. Its pretty simple and fun.

You can download it for free at

processing.org

I don't have too many sketches at the moment but they are pretty cool.

Here is my most current finished work.


SPOILER:


int x = 100;
void setup()
{
size(600,600);
frameRate(30);
}
void draw()
{
background(3,3,3);
fill(168,170,169);
stroke(168,170,169);
smooth();

ellipse(x,300,150,150);
x = x + 1;
fill(3,3,3);
stroke(3,3,3);
ellipse(300,300,150,150);
}

Boxiom
k and whats this do
3three3
You can design your own games, create pictures and what not.

Exsiss
Processing is my favorite programing language! (And as I hate programming that says a lot).

I took a course on it in the Fall and it bumped my feeling on programming from pure hatred to dislike.

I was surprised to see this topic though, very few people know of it.

Probably the coolest thing I did with it was almost a complete version of Pacman. (Although I don't know how to put it only...)

Heres the code for the Pacman game, I had some help (like with the actually drawing of the maze and the ghosts) To get the score to work you should just have to download a font ( Tools ->create font) and name it score (on the bottom of the window that pops up when you click create font it will say "filename" change it to score )

OKAY so I got the error "There is an error with your BBCode, the number of opening tags do not meet the number of closing tags." so I can't post it, ugh. I'll try and figure something out.

I have some other stuff to, I'll try and weed through them and find the good/better stuff.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.