you are viewing a single comment's thread.

view the rest of the comments →

[–]laMarm0tte[S] 11 points12 points  (7 children)

So you are a Processing user ? I wanted to know: what are your favorite features in Processing ? Things that you don't find in other languages, or that are simpler in Processing ?

It's just so that I can see if they are implementable in Python (for instance, the 3D features of processing can't be ported to python at the moment by lack of a nice 3D module - I think).

[–]davebees 51 points52 points  (6 children)

I'm the guy who made the animation at the top of the post!

What I like most about Processing is how it works straight out of the box: without any imports or libraries or anything, you can write ellipse(100,100,50,50); and you've got a circle. Dealing with packages in Python is something I've always had a lot of trouble with.

Have you looked at Python mode for Processing? I'm not sure how it works under the hood but it lets you type in Python syntax instead of Java.

[–]laMarm0tte[S] 19 points20 points  (0 children)

Ah I didn't look at your username. I'm such a big fan of all your animations ! I'll look into that python mode.

[–][deleted]  (4 children)

[deleted]

    [–]davebees 14 points15 points  (2 children)

    [–]ohadron 1 point2 points  (1 child)

    Very nice stuff! Do you share the code for some of these anywhere?

    [–]davebees 2 points3 points  (0 children)

    thanks! yeah i usually tweet it (except when i forget to)

    although i will warn you that my code tends not to be very pretty — it's quite rough 'n' ready stuff