With four parameters I can fit an elephant, and with five I can make him wiggle his trunk.
I did a few back in my day as a designer:
1. https://dribbble.com/shots/1909369-Liberty-Eagle-Arms
2. https://dribbble.com/shots/1553151-Flint-mark-icons
That first one is some of my best work.
Another example of constrained creativity is early to mid nineties electronic music.
Compared to that, the new logo doesn't have a circle (segment) anywhere to be seen (unless you consider straight lines as circle segments with the center located at infinity of course), and is simply the "mathematical double-struck capital X" from an unknown but probably pre-existing font (apparently Monotype's "Special Alphabets 4" comes close, but isn't identical, according to https://tweethunter.io/blog/how-to-write-twitter-x-iphone-ma...).
I just have a hard time imagining you start with circles, lay them down (resize as needed) and continue. I mean I guess that doesnt sound so crazy after I say it... it just seems like it would add a lot of extra noise to the image that would make it much harder to draw.
There's a hilarious Spongebob bit [0] where Squidward is teaching an art class, and he starts off in that exact manner of trying to draw a perfect circle, only to have Spongebob subvert the entire idea. The whole episode is artistic gold IMO.
https://www.reddit.com/r/restofthefuckingowl/comments/6f71jm...
https://imgur.com/how-i-feel-when-somebody-gives-me-advice-g...
https://www.amazon.com/Drawing-Right-Side-Brain-Definitive/d...
https://kk.org/cooltools/drawing-on-the-right-side-of-the-br...
"While sketching, I kept track of the number of circles I was using, counting one for every curve." After sketching an animal, it should be easier to adjust the image by inserting/removing/moving circles.
I suspect its a stencil or something. So in some sense the circle does exist first, even if they only draw the curve from it initially (before marking it up with the full circle after the fact).
https://www.reddit.com/r/interestingasfuck/comments/txdimd/t...
Often depicting slices of vegetables, animals..
From few circles to hundreds
[1] https://en.wikipedia.org/wiki/Low-complexity_art
My son is a big fan of bytebeat [2], which is also a low complexity art, but music.
[2] https://dollchan.net/bytebeat/#4AAAA+kUryC/X0CixswNhQyM1Q01N...
Then there is this from his blog --
Dec 2024: Sadly, the Nobel Prize in Physics 2024 for Hopfield & Hinton is a Nobel Prize for plagiarism. They republished methodologies developed in Ukraine and Japan by Ivakhnenko and Amari in the 1960s & 1970s, as well as other techniques, without citing the original papers. Even in later surveys, they didn't credit the original inventors (thus turning what may have been unintentional plagiarism into a deliberate form). None of the important algorithms for modern Artificial Intelligence were created by Hopfield & Hinton. Details in the recent technical report, with lots of references, links, and facts.
https://people.idsia.ch/~juergen/physics-nobel-2024-plagiari...
Also, AlphaFold is great but hardly an innovation. David Baker deserved it 100%.
https://academic.oup.com/plms/article/s1-7/1/213/1570315?log...
So if we remove the condition of 13, everything is in fact made of circles only!
Those are just the obvious ones that I can immediately spot — there was probably a lot of careful consideration into the placement of circles in order to facilitate good looking arcs and circles that bring the animals to "life".
[edit] Nevermind. I'm being too harsh. The creator was obviously having fun and being creative. That's cool. I think if nothing else this just proves how jaded and skeptical about clever artwork I've become in the past few years.
Tangent, with a dark/colorful theme in an editor the minimap looks like a city scape
https://www.danielenannini.it/en/portfolio/animali-compassat...
This type of content is becoming rarer on the internet nowadays.
What animals cannot be accurately depicted with 13 circles?
A mature house centipede has 15 pairs of legs. You can probably get the point across with a portion of that, and use two parts of a circle for 2 legs.
But not that artsy as the OG.
Circle circles_[13];
}
(1) Listing closed curves by vertices. Each vertex of a painted area is an intersection of two or more circles, and delimits a section of a circle. So the section of circles that enclose a circle can be encoded each by the union of:
(1.1) A circle (index); (1.2) A 2nd circle (index) that intersects the 1st on a first point; (1.3) A bit identifying the (first) intersection (because there may be 2 possible); (1.4) A 3rd circle (index) that intersects the 1st on a second point; (1.5) A bit identifying the (second) intersection.
Note the base circle would be the first intersection of a subsequent section of this closed curve, and the 3rd circle would be the subsequent base circle. So 1/2/3 won't be necessary for subsequent curves. So only (K+2) indices + (K+1) bits are necessary for this encoding.
Total ~K log2(K)+K bits. I hypothesize (left to the reader :)) a closed curve should contain at most 2x13 points. There can be at most 2^13 distinct regions however, so each figure (Animal) can be encoded with less than that many curves per figure. So each figure (Animal) can be encoded with less than 2^13 x 26x(5+1) bits =~ 1.3Mbit.
But that's mostly pathological cases, if each Animal must be a fully connected area, then that might reduce (hypothesis above) to at most only 26x(5+1) bits = 156 bits, or 20 bytes!
I left out a problem which area shapes encoded within each other (like eyes). In that case you need at most another 156 bits per inner cutout shape.
(2) Alternatively, you could use boolean operations to encode each shape. Also left as a fun problem :)
interface Animal {
Circle[13] circles();
// Leftover from Intro to CS, remember to remove
void make_sound();
}
The Procedural Animation https://www.youtube.com/watch?v=qlfh_rv6khY
Gibbon: Beyond the Trees - Wolfire Games https://www.youtube.com/watch?v=KCKdGlpsdlo
What needs to change to enable this kind of exploration?
Then if you want to factor out rotations, drop another parameter and say the 1st explicit circle lies on the x axis.
Arcs are just intersection of circles, so they are implicit, as far as I can tell.
But I do think that evolutionary algorithms or MCMC variants could do a better job of this, especially if paired with an auxiliary model for scoring their intermediate results.