Might wanna move this to an art board
I understand your concern, actually I wasn't exactly sure where this would belong so I did what you always do when you're unsure, I asked the rest of the staff team. General was the overall consensus so I placed it in general, artwork is mainly for hand drawn furry art and photos is for real life photos. If this isn't what the staff team is expecting though, I'm happy to remove it if there is a re-evaluation! The point is whether you're an admin, staff admin, moderator or member, the best thing to do when unsure of something is to ask!
This is very cool! I'd love to see the source code if possible. And I have a few functions I'm curious to see:
f(z) = z^tan(z)
f(x + iy) = 1 / (1/x + 1/y)
f(x + iy) = (x mod y) + e^z
f(x + iy) = factorial(x/2) + ln(z)
The last two are completely random but I'm curious to see what would come out
First equation: f(z) = z^(tan(z))
I like it, its very pretty. I expected the negative to be a bit more crazier than the positive, but I'm impressed quite impressed by the level of difference!
Second equation: f(x + iy) = 1(1/x + 1/y)
This one is also cool cause it's the only equation so far that has non-continuous divergence on ALL axis, splitting the picture into 4 distinct quadrants. It's really cool!
Now the third equation was a little tricky, because modular arithmetic is not definitely defined for complex numbers! There's a thing called Gaussian integers but even then it's not well defined for the particular equation you're asking for. So I've had to change the equation slightly to make the modulus part on real numbers instead of complex numbers, the result is none-the-less interesting!
Third equation: f(x + iy) = (x mod |y|) + e
zThe fourth equation was also a little tricky but less so, I had to import a library to do a factorial over real numbers (its called the gamma function)
Equation 4: f(x + iy) = (x/2)! + ln(z)
You were also interested in the source code, I've posted the four files onto paste bin. Note they are messy and uncommented (they're designed just for personal use) so be warned, there be dragons:
Main.cs:
https://pastebin.com/qj1r1uTCColourCalculator.cs:
https://pastebin.com/iduE3pzCEquation.cs:
https://pastebin.com/0jLbn5AVImageProcessor.cs:
https://pastebin.com/6qYMvp9NSo, this is basically a derivative formula art generator. Looks like a cool program!
Here's a fractal generator that people can play with, not the same thing, but the visual effects are memorable:
https://anvaka.github.io/pplay/?tx=0&ty=0&scale=1
Mmhmm, actually if you look within the source code my visualizer is also capable of computing iterative functions like mandlebrot, so its capable of fractal generation as well.