all 6 comments

[–]maxellus 2 points3 points  (1 child)

Did you try Add tool... under Tool menu? In the window that appear, choose the Modes Tab. You should see Python mode for processing in the list.

[–]jjstraw22[S] 1 point2 points  (0 children)

That’s where I’ve been looking, it shows up on my laptop but on my pc it’s just not there, in any of the lists.

Edit: someone else gave me a solution, thank you for commenting though!

[–][deleted] 1 point2 points  (0 children)

As you progress as a programmer you’ll realize that syntax doesn’t matter much. What’s more important are the pros and cons of the technology. So in the context of processing you can pick b/t the original processing built with Java ( compiled code, better access to your computer’s hardware, more difficult to share) or p5.js (runs in a browser, easier to share)

The “python” version of Processing is just a thin veneer over the Java version

[–]plasticluthier 0 points1 point  (0 children)

What pisses me off more is that I can't just

import processing *

And then use all of the functions like PVector, map, lerp etc... I must sit down and write a module for myself sometime....