Creative Challenge
"Flamingo ice skating on a lily pad"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#1a5276"/>
<stop offset="100%" stop-color="#9b59b6"/>
</linearGradient>
<radialGradient id="lilyPad">
<stop offset="0%" stop-color="#87d37c"/>
<stop offset="100%" stop-color="#45b0a5"/>
</radialGradient>
<filter id="iceGlow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Frozen Pond -->
<path d="M50 250 Q150 280 250 250 L250 300 50 300Z"
fill="#a8e6cf" filter="url(#iceGlow)" opacity="0.9"/>
<!-- Lily Pad -->
<ellipse cx="150" cy="240" rx="60" ry="30" fill="url(#lilyPad)">
<animate attributeName="rx" values="60;65;60" dur="3s" repeatCount="indefinite"/>
</ellipse>
<!-- Flamingo Body -->
<path d="M150 150 Q140 90 180 60 Q200 40 220 80 L210 120 Q190 140 170 150Z"
fill="#ff69b4" transform="rotate(-10 150 150)"/>
<!-- Neck -->
<path d="M170 140 C160 100 190 80 210 100 L215 120 Z"
fill="url(#flamingoGrad)" stroke="#ff1493" stroke-width="2"/>
<!-- Ice Skates -->
<path d="M130 240 L170 240 Q175 250 165 255 L135 255 Q125 250 130 240Z"
fill="#4b0082"/>
<path d="M130 255 L170 255" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
<!-- Motion Lines -->
<g transform="rotate(20 150 200)">
<path d="M160 180 Q190 170 200 160" stroke="#fff" fill="none" stroke-dasharray="4 2"/>
<animateTransform attributeName="transform" type="rotate" values="20 150 200;25 150 200;20 150 200" dur="1.5s" repeatCount="indefinite"/>
</g>
<!-- Frost Details -->
<g fill="#fff" opacity="0.8">
<circle cx="110" cy="220" r="2"/>
<circle cx="190" cy="230" r="3"/>
<polygon points="150,210 153,215 158,213" transform="rotate(30 150 210)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="lilyPadGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color:#A8E8A2;stop-opacity:1" />
<stop offset="100%" style="stop-color:#5A985D;stop-opacity:1" />
</linearGradient>
<radialGradient id="flamingoGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FF6F61;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E4B2B0;stop-opacity:1" />
</radialGradient>
<linearGradient id="iceGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color:#A0D8E0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E6F8FC;stop-opacity:1" />
</linearGradient>
</defs>
<ellipse cx="150" cy="230" rx="80" ry="30" fill="url(#lilyPadGradient)" />
<path d="M150,98 Q130,70 155,50 Q160,60 158,80 Q185,85 160,110 Q145,95 150,98" fill="url(#flamingoGradient)" />
<path d="M155,50 Q170,55 160,70 Q150,60 160,50 Q155,40 145,50 Q150,40 155,50" fill="url(#flamingoGradient)" />
<path d="M156,70 Q165,75 165,85 Q160,80 156,70" fill="#FF80AB" />
<path d="M150,98 Q145,105 140,100 Q145,115 148,105 Q150,110 150,98" fill="#FF99CC" />
<circle cx="155" cy="50" r="3" fill="black" />
<path d="M150,230 L145,240 Q150,250 155,240 L150,230" fill="url(#iceGradient)" />
<path d="M145,240 Q140,230 135,240 L140,245 Q140,240 145,240" fill="url(#iceGradient)" />
<path d="M145,240 Q150,240 155,238 Q150,235 145,240" fill="url(#iceGradient)" />
</svg>
Judge's Analysis
Player 2's submission is more visually coherent and adheres closely to the prompt.
The flamingo and lily pad are more clearly defined, providing a better representation of the theme.
The use of color and composition enhances the overall appeal, making it a more compelling interpretation of a flamingo ice skating on a lily pad.
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
"Umbrella tree with raining keys"
"Flying turtle with a lighthouse on its shell during a sunset"
"Treehouse in a shoe-shaped tree"
"Octopus juggling cupcakes on a unicycle over a rainbow"
"Golden octopus wearing a top hat in a vintage-style coffee cup"
"A dancing cactus in a tutu balancing on a floating, striped beach ball"