Okay, so “stella novarino,” huh? Sounds fancy, and honestly, it kinda is. I stumbled upon this while I was trying to make some cool visual effects for a little project I was working on. I wanted something that looked like, you know, sparks or stars exploding, and I thought, “Let’s see what the internet has to offer.”

So, first things first, I did some digging. Turns out, “stella novarino” isn’t a standard term for some graphics thing. It’s a bit niche. After messing around with search engines, I found some snippets of code and examples that seemed related to procedural generation – basically, making stuff with algorithms.
I started by grabbing some basic code. It was mostly in Python, which is cool because I’m pretty comfortable with Python. I copied and pasted it into my editor, and… well, it didn’t work straight away. Classic, right? There were some missing libraries, some weird syntax errors, the usual debugging fun.
After a bit of wrestling with the code, I got something to run. It wasn’t exactly “stella novarino,” but it was a starting point. It was just a bunch of random lines on a black background, kind of like a very abstract firework.
Getting Down to the Details
The core idea seemed to be using some kind of fractal-like structure. Here’s how I think it worked (and I’m still kinda learning this myself):
- Start with a point. Just a single, lonely pixel.
- Branch out. From that point, draw a few lines going in different directions. The number of lines, their lengths, and the angles between them – those were all parameters I could tweak.
- Repeat! For each of those new endpoints, do the same thing. Draw more lines, branching out. Keep doing this a few times (the “iterations”).
- Add some randomness. To make it look less… robotic, I threw in some random numbers. The lengths, angles, and even the number of branches could vary a bit each time.
I played around with these parameters a lot. Changing the number of branches made a huge difference. Too few, and it looked sparse. Too many, and it became a blob. The angles were also key – small angles made it look spiky, while wider angles made it more… flowery, I guess.

Then, I got to the colors. Initially, it was just white lines. Boring! I added some code to randomly pick colors for each line, or even to change the color along a single line. That’s when it started to look really interesting.
After hours of tweaking and experimenting (and plenty of “oops, that broke it” moments), I finally got something that looked like a cluster of exploding stars. It’s not perfect, but it’s pretty cool, and I learned a ton along the way. And, you know, most importantly, I made that!