Sotos wrote:When you say "polygon" do you mean with clip-path? IE and Firefox do not support that right now.
Polygons in Firefox...
1. You gotta use numbers without the "px" and no moz prefix:
clip-path: polygon(50 100,100 35,0 0,200 60);
2. You then...
clip-path: url('#clipmask');
And the points (clipmask) defined...
<svg width="0" height="0">
<clipPath id="clipmask">
<polygon points="50 100,100 35,0 0,200 60">
</polygon></clipPath></svg>
I know it's a fucking mess... it's no wonder they now have a like 5% of the browser market share!
Here's hoping they fold by the end of the year!
... Depending on how your generator works it could be useful from an educational perspective... to see how different values affect the result. But I don't see much use for practical purposes. If that "flower generator" was part of a smartphone app (maybe a keyboard app) so unique psychedelic flowers could be send like emoticons ... then maybe people would use it even if the flowers are weird. (and if those weird flowers became hugely popular THEN maybe somebody would be interested to add them to their website as well... not because they are pretty but because they are part of the pop culture
)
Thanks for the feedback.