Creative Challenge
"A geometric flamingo made of interconnected triangles"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF77B5;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFD1DC;stop-opacity:1" />
</linearGradient>
<linearGradient id="beakGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#333;stop-opacity:1" />
<stop offset="100%" style="stop-color:#666;stop-opacity:1" />
</linearGradient>
</defs>
<polygon points="150,10 170,50 130,50" fill="url(#flamingoGradient)" />
<polygon points="170,50 190,90 150,70" fill="url(#flamingoGradient)" />
<polygon points="130,50 110,90 150,70" fill="url(#flamingoGradient)" />
<polygon points="190,90 210,130 170,110" fill="url(#flamingoGradient)" />
<polygon points="110,90 90,130 130,110" fill="url(#flamingoGradient)" />
<polygon points="210,130 230,170 190,150" fill="url(#flamingoGradient)" />
<polygon points="90,130 70,170 110,150" fill="url(#flamingoGradient)" />
<polygon points="170,110 150,150 190,150" fill="url(#flamingoGradient)" />
<polygon points="130,110 150,150 110,150" fill="url(#flamingoGradient)" />
<polygon points="150,150 170,190 130,190" fill="url(#flamingoGradient)" />
<polygon points="170,190 190,230 150,210" fill="url(#flamingoGradient)" />
<polygon points="130,190 110,230 150,210" fill="url(#flamingoGradient)" />
<polygon points="130,210 150,250 130,270" fill="url(#flamingoGradient)" />
<polygon points="150,250 170,270 130,270" fill="url(#flamingoGradient)" />
<polygon points="170,270 190,250 190,270" fill="url(#flamingoGradient)" />
<polygon points="150,10 135,40 145,40" fill="url(#beakGradient)" />
<polygon points="145,40 135,40 135,30" fill="url(#beakGradient)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="pinkGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff77a0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff3d6f;stop-opacity:1" />
</linearGradient>
<linearGradient id="beakGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffcd00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff9900;stop-opacity:1" />
</linearGradient>
</defs>
<g transform="translate(100,50)">
<polygon fill="url(#pinkGradient)" points="25,0 50,-50 100,-50 75,0 50,25 0,25 -25,0" />
<polygon fill="url(#pinkGradient)" points="50,25 25,0 0,25 0,50 75,50 100,25" />
<polygon fill="url(#pinkGradient)" points="75,0 100,25 125,-25 100,-50 75,-25" />
<polygon fill="url(#pinkGradient)" points="50,50 25,25 100,50 100,75 50,75" />
<polygon fill="url(#pinkGradient)" points="25,25 0,50 50,50 25,75 -25,50 -25,25" />
<polygon fill="url(#pinkGradient)" points="100,-50 125,-25 150,-75 125,-100 100,-75" />
<polygon fill="url(#beakGradient)" points="25,0 5,-15 5,-10 25,-5" />
<polygon fill="#000000" points="5,-10 5,-15 -10,-15 -10,-10" />
</g>
<g transform="translate(120,60)">
<polygon fill="url(#pinkGradient)" points="0,0 30,-30 60,-30 30,0" />
<polygon fill="url(#pinkGradient)" points="60,-30 90,-60 120,-60 90,0 60,-30" />
</g>
<g transform="translate(80,80)">
<polygon fill="url(#pinkGradient)" points="30,0 50,30 0,30" />
<polygon fill="url(#pinkGradient)" points="30,30 50,60 0,60 30,30" />
<polygon fill="url(#pinkGradient)" points="0,30 0,60 -30,60 -30,30" />
</g>
<g transform="translate(90,20)">
<polygon fill="url(#pinkGradient)" points="10,0 20,10 0,10" />
</g>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by more clearly resembling a flamingo shape, using interconnected triangles that suggest the form of the bird.
The composition is more visually appealing with a dynamic pose, and the use of color adds to the representation.
Player 1's image, while creative, lacks the recognizable form of a flamingo and appears more abstract.
These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.
Shapes Metrics
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
AI Judging Process
Creativity
Originality, innovative use of shapes and unique approach to the prompt.
Prompt Adherence
How accurately the SVG captures the essence of the prompt.
Visual Appeal
Aesthetic quality including composition, color usage and overall visual impact.
How does judging work?
SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.
Similar Challenges
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"