Creative Challenge
"A snail racing against a cheetah across a winding rainbow road."
<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>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Rainbow Road -->
<path d="M10,200 Q75,150 150,200 T290,180" stroke="url(#rainbow)" stroke-width="30" fill="none" filter="url(#glow)"/>
<!-- Cheetah -->
<g transform="translate(200,170) scale(0.8)">
<path d="M0,0 Q20,-10 40,0 T80,0" fill="#FFD700"/>
<circle cx="70" cy="-5" r="12" fill="#000"/>
<path d="M0,-5 Q40,-20 80,-5" fill="none" stroke="#000" stroke-width="2"/>
<circle cx="75" cy="-8" r="3" fill="#fff"/>
<path d="M80,0 Q85,10 90,0" fill="#FFD700"/>
<path d="M10,0 Q15,20 20,0 M30,0 Q35,20 40,0 M50,0 Q55,20 60,0" fill="none" stroke="#000" stroke-width="2"/>
</g>
<!-- Snail -->
<g transform="translate(50,180)">
<path d="M0,0 Q10,-10 20,0 T40,0" fill="#A52A2A"/>
<circle cx="35" cy="-5" r="8" fill="#000"/>
<circle cx="38" cy="-7" r="3" fill="#fff"/>
<path d="M-5,0 Q-10,10 0,15 T20,10 T40,15 Q45,10 40,0" fill="#D2691E"/>
<path d="M-5,0 C-15,-5 -15,-15 -5,-20 C5,-25 15,-20 20,-15 C25,-10 25,-5 20,0" fill="#8B4513"/>
</g>
<!-- Speed Lines -->
<g stroke="#FFD700" stroke-width="1">
<path d="M220,160 L240,160 M225,165 L245,165 M230,170 L250,170" opacity="0.6"/>
</g>
<!-- Snail Trail -->
<path d="M20,180 Q25,179 30,180 T40,180 T50,180" fill="none" stroke="#silver" stroke-width="2" opacity="0.5"/>
<!-- Stars/Sparkles -->
<g fill="#FFD700" opacity="0.8">
<circle cx="100" cy="100" r="2"/>
<circle cx="150" cy="80" r="2"/>
<circle cx="200" cy="120" r="2"/>
<circle cx="250" cy="90" r="2"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient Sky -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEFA"/>
<stop offset="100%" stop-color="#F0E68C"/>
</linearGradient>
<!-- Rainbow Gradient for Road -->
<linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="16.66%" stop-color="#FF7F00"/>
<stop offset="33.33%" stop-color="#FFFF00"/>
<stop offset="50%" stop-color="#00FF00"/>
<stop offset="66.66%" stop-color="#0000FF"/>
<stop offset="83.33%" stop-color="#4B0082"/>
<stop offset="100%" stop-color="#8F00FF"/>
</linearGradient>
<!-- Snail Shell Pattern -->
<pattern id="shellPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="4" fill="#D2691E"/>
</pattern>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Winding Rainbow Road -->
<path d="
M 50 250
Q 100 150, 150 250
Q 200 150, 250 250
" fill="none" stroke="url(#rainbowGradient)" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/>
<!-- Snail -->
<g id="snail" transform="translate(80, 200)">
<!-- Snail Body -->
<ellipse cx="0" cy="0" rx="15" ry="20" fill="#A0522D" stroke="#6E4B3B" stroke-width="2"/>
<!-- Snail Head -->
<circle cx="0" cy="-25" r="6" fill="#8B4513"/>
<!-- Snail Antennae -->
<line x1="0" y1="-25" x2="-4" y2="-30" stroke="#6E4B3B" stroke-width="1"/>
<line x1="0" y1="-25" x2="4" y2="-30" stroke="#6E4B3B" stroke-width="1"/>
<!-- Snail Shell -->
<ellipse cx="0" cy="0" rx="8" ry="12" fill="url(#shellPattern)" stroke="#5C3317" stroke-width="1"/>
</g>
<!-- Cheetah -->
<g id="cheetah" transform="translate(220, 200)">
<!-- Cheetah Body -->
<ellipse cx="0" cy="0" rx="20" ry="12" fill="#F5DEB3" stroke="#D2B48C" stroke-width="2"/>
<!-- Cheetah Head -->
<circle cx="0" cy="-20" r="5" fill="#F5DEB3"/>
<!-- Ears -->
<polygon points="-3,-20 0,-25 3,-20" fill="#D2B48C"/>
<!-- Legs (simple lines) -->
<line x1="-15" y1="5" x2="-20" y2="12" stroke="#D2B48C" stroke-width="2"/>
<line x1="-5" y1="5" x2="-5" y2="12" stroke="#D2B48C" stroke-width="2"/>
<line x1="5" y1="5" x2="5" y2="12" stroke="#D2B48C" stroke-width="2"/>
<line x1="15" y1="5" x2="20" y2="12" stroke="#D2B48C" stroke-width="2"/>
<!-- Tail -->
<polygon points="10,0 15,3 10,5" fill="#D2B48C"/>
<!-- Speed lines (to indicate motion) -->
<line x1="230" y1="195" x2="250" y2="195" stroke="#FFA500" stroke-width="2" stroke-dasharray="4,2"/>
<line x1="230" y1="205" x2="250" y2="205" stroke="#FFA500" stroke-width="2" stroke-dasharray="4,2"/>
</g>
<!-- Artistic Details: Sun with Radiant Lines -->
<circle cx="50" cy="50" r="20" fill="#FFD700" stroke="#FFA500" stroke-width="2"/>
<g stroke="#FFD700" stroke-width="1">
<line x1="50" y1="10" x2="50" y2="0"/>
<line x1="50" y1="90" x2="50" y2="100"/>
<line x1="10" y1="50" x2="0" y2="50"/>
<line x1="90" y1="50" x2="100" y2="50"/>
<line x1="20" y1="20" x2="10" y2="10"/>
<line x1="80" y1="20" x2="90" y2="10"/>
<line x1="20" y1="80" x2="10" y2="90"/>
<line x1="80" y1="80" x2="90" y2="90"/>
</g>
</svg>
Judge's Analysis
Player 1's submission better captures the idea of a snail racing against a cheetah on a winding rainbow road with its dynamic depiction of the two characters in motion along a clear and colorful path.
The execution is visually engaging and creative, while Player 2's image, although colorful and including both characters, lacks the sense of movement and dynamism central to the prompt.
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 melting clock perched on a mushroom under a starlit sky."
"An octopus juggling planets under a starry sky."
"A dragon blowing bubbles instead of fire."
"An octopus juggling colorful planets under a starry sky."