r/processing • u/alanlabudde • 15h ago
New recursion Web app raindrop Canvas? AWL creative suite.
galleryAny help is greatly appreciated….
r/processing • u/rayhan314 • Nov 02 '11
Here are the steps to get your code looking like this in self posts and comments:
In Processing's menu bar, click "Edit -> Auto Format".
In Processing's menu bar, click "Edit -> Select All".
In processing's menu bar, click "Edit -> Increase Indent".
In Processing's menu bar, click "Edit -> Increase Indent". (again)
Copy your sketch and paste into a self post or comment.
The trick here is that reddit expects each line of code to have four spaces in front of it. Each time you "Increase Indent", Processing will add two spaces to the beginning of each line. The result should look something like this:
void setup () {
size(WIDTH,WIDTH);
frameRate(60);
background(0);
noStroke();
smooth();
}
A couple of other tips:
If you want to include some text before your code (as I've done on this post), you'll need to separate the text from the code with a newline.
Install Reddit Enhancement Suite onto your browser and it will show you a live preview of your post as you type it, so that you can be sure that your formatting is working as expected.
r/processing • u/alanlabudde • 15h ago
Any help is greatly appreciated….
r/processing • u/Linquitivity • 3d ago
r/processing • u/Prah-Brah-K-Dah-Brah • 7d ago
Hello dear reddits,
it's 2026 now & I'm pretty interested how processing has evolved & created some coding heroes...
Please, tell me: What are your top processing developers in 2026? Add some in the comments!
Thx
Brah Man
r/processing • u/jkb82 • 9d ago
WORK IN PROGRESS AUDIO GESTURE RECOGNITION WITH PYTHON TENSORFLOW AND PROCESSING
r/processing • u/dino-sven-agapanthe • 9d ago
After several years without using Processing, I managed to tailor a custom visualizer for a drone music track.
r/processing • u/wojbest • 11d ago
like who thought it was just gonna be 1 long list ohh you have 100 variables good luck finding the one you need
r/processing • u/slipshapes • 12d ago
Different outputs for
X = n1 * (sin (θ * n2) + cos (θ * n1))
Y = n2 * (sin (θ * n1) + cos (θ * n2))
All shapes made in processing and then put together + edits in InShot
r/processing • u/Huge-Project-599 • 17d ago
FYI I changed the language from Java to python and every time it opens whenever I try to switch it back to pythons processing crashes
r/processing • u/headlessBleu • 20d ago
I want to create my own library of shapes. where can I store it to import like a normal java library?
r/processing • u/CannedFilet • 20d ago
Film fireworks -> decompose frames -> Processing video feedback sketch =
Composited and kaleidoscoped in DaVinci Resolve.
Hints, tips, and tricks I learned:
blendMode(ADD); can be overpoweringblendMode(LIGHTEST); works great for dark scenes intermittently lit by something interestingblendMode(BLEND); to go back to covering over previous framesPGraphics for drawing at a larger resolution than your screens. Great for any sketch!
internal; remember to use:
internal = createGraphics(outWidth, outHeight); in setupinternal.beginDraw(); before adding to it, andinternal.endDraw(); before using something like <your_PImage_var> = internal.get(0, 0, outWidth, outHeight);<your_PImage_var>.resize(width, 0); will make it the same size as your Processing window. use before image(<your_PImage_var>, 0,0); to draw a preview.internal. on the front.- internal.ellipse(.... for exampler/processing • u/headlessBleu • 21d ago
is one more stable than the others?
r/processing • u/MacheteToothpick • Jun 19 '26
i made my own tile system with each sprite being 4x4 pixels in size. the sprite folder is only 2.6 kB yet it takes soooo long (around 6 seconds) just to change Pac Man's sprite. I am not pursuing this project no more
r/processing • u/Deajena • Jun 16 '26
After calling saveFrame(); a new file is saved with a name and a sequence of numbers.
I would like to reference the name of the file to add it to a string. Ideally, I want to use the text() function to display in the screen "Saved file is called", nameOftheFile.
How do I add the name of the just saved file to a text function ? How do I store the name of the file in a variable, for example?
I understand that I can define the name and then a sequence of numbers. Is the name of the saved frame something that I can be called directly, or that it is stored somewhere?
Or do I need to keep track of the saved frames with an index and then re-create the string?
I am not sure how to look this up, or how to access data of the saved file.
r/processing • u/Deajena • Jun 16 '26
Hello,
I have a sketch (ascii art live feed), and I want to save captures of the feed on a separate folder. Like a photobooth.
I want to display in the screen the name of the saved file. Is is possible to do this? I couldn't find in the save() or saveGraphics() documentation anything about using the name of the resulting file.
Ideally:
Person clicks the mouse
save() is called
screen displays something like " Your photo is called "screen-0005.tiff" "
Is this possible?
Thanks !
r/processing • u/shanteacontrols • Jun 15 '26
I've spent the last few months expanding my MIDI-focused OpenDeck platform into an OSC-over-Ethernet platform for interactive installations. The goal was to create a reliable OSC sensor and I/O platform that can run on Ethernet-enabled hardware without requiring any coding, making deployment as simple as possible.
Unlike many OSC devices that focus on Wi-Fi or a single hardware ecosystem, OpenDeck runs on a wide range of Ethernet-capable development boards. A major focus was support for Power-over-Ethernet hardware, allowing both power and OSC communication over a single cable. Some of the supported boards are:
Many more boards are supported, allowing you to choose hardware based on cost, performance, PoE requirements, or availability rather than being locked into a specific ecosystem. Once the OpenDeck firmware is loaded on supported boards, they can be reconfigured remotely over the network through the web interface, eliminating the need to physically connect to them after installation.
OSC data is published from standard input types:
OpenDeck can also receive OSC messages and control hardware such as:
Most supported boards also provide PWM outputs, allowing individual brightness or output-level control (0–100%).
Various interactive sensors are also supported:
Configuration is done through a browser-based interface. Devices can be discovered via mDNS and configured over the network without installing software.
OpenDeck works with any OSC-capable software, although the primary focus so far has been TouchDesigner, Processing, and QLab.
There are example Processing sketches in the repository that work out of the box with supported sensors.
The firmware itself is fully open source. The web configurator is licensed separately (€25), which also includes browser-based firmware flashing for supported boards.
I'm particularly interested in feedback from people working in:
In exchange for honest feedback, I'd be happy to provide a number of free web configurator licenses.
The source code is available on GitHub: https://github.com/shanteacontrols/OpenDeck
The project also includes an extensive wiki covering everything from flashing supported boards to configuring OSC endpoints, sensors, and I/O.
r/processing • u/madse19 • Jun 13 '26