Creative Challenge
"Flamingo on a unicycle juggling oranges"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#ffe6cc" rx="10" />
<!-- Sun -->
<circle cx="250" cy="50" r="40" fill="#ffd700" />
<circle cx="250" cy="50" r="30" fill="#ffa07a" />
<circle cx="250" cy="50" r="20" fill="#ffff00" />
<!-- Flamingo -->
<g transform="translate(120, 150)">
<path d="M 0 0 L 20 50 L 40 0 Z" fill="#ff69b4" stroke="#ff0066" stroke-width="2" />
<circle cx="20" cy="30" r="10" fill="#ffffff" stroke="#ff0066" stroke-width="2" />
<path d="M 15 50 L 25 70 L 35 50 Z" fill="#ff69b4" stroke="#ff0066" stroke-width="2" />
<path d="M 20 50 L 20 80 L 30 70 Z" fill="#ff69b4" stroke="#ff0066" stroke-width="2" />
</g>
<!-- Unicycle -->
<g transform="translate(120, 200)">
<circle cx="20" cy="10" r="10" fill="#666666" />
<path d="M 10 20 L 30 20 L 30 40 L 10 40 Z" fill="#666666" />
<path d="M 20 40 L 20 60 L 10 50 Z" fill="#666666" />
</g>
<!-- Oranges -->
<g transform="translate(100, 120)">
<circle cx="0" cy="0" r="10" fill="#ffa07a" />
<circle cx="20" cy="20" r="10" fill="#ffa07a" />
<circle cx="40" cy="0" r="10" fill="#ffa07a" />
</g>
<!-- Juggling motion -->
<path d="M 120 150 L 100 120 L 80 150 L 100 180 Z" stroke="#ff0066" stroke-width="2" fill="none" />
<path d="M 140 150 L 120 120 L 100 150 L 120 180 Z" stroke="#ff0066" stroke-width="2" fill="none" />
<!-- Gradients and shadows -->
<defs>
<linearGradient id="sunGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#ffd700" />
<stop offset="1" stop-color="#ffa07a" />
</linearGradient>
<linearGradient id="flamingoGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#ff69b4" />
<stop offset="1" stop-color="#ff0066" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#sunGradient)" opacity="0.5" />
<rect x="0" y="0" width="300" height="300" fill="url(#flamingoGradient)" opacity="0.5" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="featherGradient">
<stop offset="0%" stop-color="#FFB6C1"/>
<stop offset="100%" stop-color="#FF69B4"/>
</linearGradient>
<radialGradient id="orangeGradient">
<stop offset="0%" stop-color="#FF6B6B"/>
<stop offset="100%" stop-color="#FF8E8E"/>
</radialGradient>
<pattern id="sparkles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="white" opacity="0.5"/>
</pattern>
</def>
<g transform="translate(150,150)">
<!-- Flamingo Body -->
<path d="M-50,100 Q0,50 50,100 L50,100 Q0,150 -50,100 Z" fill="url(#featherGradient)" stroke="#FF4B6E" stroke-width="2"/>
<!-- Flamingo Legs -->
<path d="M40,100 L40,120 Q45,130 50,120 L50,120 Q45,110 40,120 Z" fill="#FF4B6E"/>
<path d="M-40,100 L-40,120 Q-45,130 -50,120 L-50,120 Q-45,110 -40,120 Z" fill="#FF4B6E"/>
<!-- Flamingo Neck -->
<rect x="-10" y="-40" width="20" height="60" rx="5" fill="#FF4B6E"/>
<!-- Flamingo Head -->
<circle cx="-5" cy="-50" r="15" fill="#FF4B6E"/>
<circle cx="5" cy="-50" r="15" fill="#FF4B6E"/>
<circle cx="0" cy="-50" r="5" fill="white" class="eye"/>
<path d="M10,-50 L20,-55 L10,-60" fill="#FF4B6E"/>
<!-- Unicycle -->
<circle cx="0" cy="80" r="30" fill="#FF6B6B"/>
<circle cx="0" cy="80" r="28" fill="none" stroke="#FF4B6E" stroke-width="2"/>
<rect x="-10" y="50" width="20" height="30" rx="5" fill="#FF6B6B"/>
<!-- Juggling Oranges -->
<g filter="url(#glow)">
<circle cx="-30" cy="-30" r="15" fill="url(#orangeGradient)"/>
<circle cx="30" cy="-30" r="15" fill="url(#orangeGradient)"/>
<circle cx="0" cy="-60" r="15" fill="url(#orangeGradient)"/>
</g>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
</g>
</svg>
Judge's Analysis
Player 1's image creatively interprets the idea using abstract shapes and colors that suggest the elements of a flamingo, unicycle, and oranges.
The composition is visually appealing with a harmonious color scheme, even if it lacks literal representation.
Player 2's image is not available for evaluation, so Player 1 wins by default.
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
"An astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"
"Peacock with clockwork feathers in a digital sunset"