Creative Challenge
"A snail in a top hat sliding down a rainbow"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="rainbow" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#FF69B4" />
<stop offset="0.2" stop-color="#FFC67D" />
<stop offset="0.4" stop-color="#F7DC6F" />
<stop offset="0.6" stop-color="#8BC34A" />
<stop offset="0.8" stop-color="#45B3FA" />
<stop offset="1" stop-color="#8E44AD" />
</linearGradient>
<radialGradient id="snail-shell" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0" stop-color="#FFFFFF" />
<stop offset="0.5" stop-color="#F2F2F2" />
<stop offset="1" stop-color="#AAAAAA" />
</radialGradient>
<pattern id="snail-pattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#CCCCCC" rx="1" />
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#F0F0F0" rx="20" />
<path d="M150 250 C150 250 120 220 100 200 L100 200 C80 180 60 160 50 140 L50 140 C40 120 30 100 30 80 L30 80 C30 60 40 40 50 20 L50 20 C60 0 80 0 100 0 L100 0 C120 0 140 20 150 40 L150 40 C160 60 170 80 180 100 L180 100 C190 120 200 140 210 160 L210 160 C220 180 230 200 240 220 L240 220 C250 250 250 250 150 250 Z" fill="url(#rainbow)" />
<g transform="translate(150 200)">
<circle cx="0" cy="0" r="20" fill="url(#snail-shell)" />
<circle cx="0" cy="0" r="15" fill="url(#snail-pattern)" />
<circle cx="-5" cy="-10" r="5" fill="#000000" />
<path d="M-10 -10 L10 -10 L10 10 Z" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
<rect x="-15" y="-20" width="30" height="10" fill="#000000" rx="2" transform="rotate(45)" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff0000"/>
<stop offset="17%" style="stop-color:#ff9900"/>
<stop offset="33%" style="stop-color:#ffff00"/>
<stop offset="50%" style="stop-color:#33ff33"/>
<stop offset="67%" style="stop-color:#3333ff"/>
<stop offset="83%" style="stop-color:#9933ff"/>
<stop offset="100%" style="stop-color:#ff33ff"/>
</linearGradient>
<radialGradient id="shellGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#8B4513"/>
<stop offset="100%" style="stop-color:#654321"/>
</radialGradient>
</defs>
<!-- Rainbow Slide -->
<path d="M50,150 Q150,50 250,150" stroke="url(#rainbow)" stroke-width="20" fill="none" stroke-linecap="round"/>
<!-- Snail Body -->
<path d="M160,140 Q170,130 180,140 T190,150 Q195,155 185,160" fill="#a8e6cf"/>
<!-- Snail Shell -->
<path d="M180,150 Q190,140 185,130 T170,120 Q160,115 155,125 T160,140" fill="url(#shellGrad)"/>
<!-- Top Hat -->
<path d="M155,120 h20 v-5 h-25 z" fill="#333"/>
<rect x="160" y="100" width="10" height="15" fill="#333"/>
<rect x="157" y="97" width="16" height="3" fill="#333"/>
<!-- Eyes -->
<circle cx="165" cy="135" r="2" fill="#000"/>
<circle cx="165" cy="134" r="0.5" fill="#fff"/>
<!-- Hat Band -->
<rect x="160" y="112" width="10" height="2" fill="#red"/>
<!-- Trail -->
<path d="M160,150 Q155,155 150,160" stroke="#a8e6cf" stroke-width="2" fill="none"/>
<!-- Sparkles -->
<g fill="#fff">
<circle cx="70" cy="120" r="2"/>
<circle cx="220" cy="130" r="2"/>
<circle cx="150" cy="90" r="2"/>
<circle cx="200" cy="170" r="2"/>
</g>
<!-- Little Hearts -->
<g fill="#ff69b4" transform="scale(0.5)">
<path d="M360,260 c5,-10 15,-10 20,0 c5,10 -10,20 -10,20 s-15,-10 -10,-20"/>
<path d="M320,280 c5,-10 15,-10 20,0 c5,10 -10,20 -10,20 s-15,-10 -10,-20"/>
</g>
</svg>
Judge's Analysis
Player 2's image is more visually appealing and adheres more closely to the prompt.
The snail is clearly depicted with a top hat and the rainbow arc is well-defined, creating a dynamic and whimsical scene.
Player 1's image, while technically competent, lacks the same level of detail and creativity in representing a snail sliding down a rainbow.
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
"A snail with a cityscape of tiny buildings on its shell"
"Pirate cat on a unicycle juggling starfish"
"Dreamy cityscape inside a snow globe with a swirling galaxy background"
"Flying cactus in a top hat balancing on a unicycle with a desert sunset backdrop"
"Underwater circus with juggling octopus, tightrope starfish, and clownfish on unicycles"
"Meteor shower over a crystal desert"