Creative Challenge
"A snail racing a cheetah under a rainbow with cheering clouds."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="16.6%" stop-color="#FFA500"/>
<stop offset="33.3%" stop-color="#FFFF00"/>
<stop offset="50%" stop-color="#008000"/>
<stop offset="66.6%" stop-color="#0000FF"/>
<stop offset="83.3%" stop-color="#4B0082"/>
<stop offset="100%" stop-color="#EE82EE"/>
</linearGradient>
<radialGradient id="cheetahPattern" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="20%" stop-color="#FFD700"/>
<stop offset="20%" stop-color="#000000"/>
<stop offset="40%" stop-color="#000000"/>
<stop offset="40%" stop-color="#FFD700"/>
<stop offset="60%" stop-color="#FFD700"/>
<stop offset="60%" stop-color="#000000"/>
<stop offset="80%" stop-color="#000000"/>
<stop offset="80%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFD700"/>
</radialGradient>
<linearGradient id="snailShellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#A0522D"/>
<stop offset="50%" stop-color="#D2B48C"/>
<stop offset="100%" stop-color="#A0522D"/>
</linearGradient>
<filter id="cloudCheer">
<feTurbulence type="fractalNoise" baseFrequency="0.05" numOctaves="3" result="noise"/>
<feDiffuseLighting in="noise" lighting-color="#FFFFFF" surfaceScale="2">
<fePointLight x="150" y="100" z="50"/>
</feDiffuseLighting>
<feBlend in="SourceGraphic" in2="diffuseLighting" mode="multiply"/>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="#87CEEB"/>
<!-- Rainbow -->
<path d="M0 200 Q 150 0 300 200" fill="none" stroke="url(#rainbowGradient)" stroke-width="20"/>
<!-- Cheering Clouds -->
<g filter="url(#cloudCheer)">
<circle cx="50" cy="80" r="30" fill="#FFFFFF"/>
<circle cx="120" cy="60" r="40" fill="#FFFFFF"/>
<circle cx="200" cy="70" r="35" fill="#FFFFFF"/>
<circle cx="260" cy="90" r="30" fill="#FFFFFF"/>
<circle cx="80" cy="120" r="25" fill="#FFFFFF"/>
<circle cx="220" cy="110" r="28" fill="#FFFFFF"/>
</g>
<!-- Cheetah -->
<g transform="translate(200 220) scale(-1, 1)">
<path d="M 0 0 Q 20 -20 40 0 C 50 20 40 40 20 40 Q 0 40 -10 20 Q -20 0 0 0 Z" fill="url(#cheetahPattern)"/>
<circle cx="35" cy="10" r="3" fill="#000000"/>
<circle cx="45" cy="15" r="3" fill="#000000"/>
<circle cx="30" cy="20" r="3" fill="#000000"/>
</g>
<!-- Snail -->
<g transform="translate(50 230)">
<circle cx="0" cy="0" r="20" fill="url(#snailShellGradient)"/>
<path d="M 20 0 Q 30 10 20 20 C 10 30 -10 30 -20 20 C -30 10 -20 0 0 -10 C 10 -20 20 -10 20 0 Z" fill="#8B4513"/>
<circle cx="-15" cy="10" r="3" fill="#000000"/>
<circle cx="-5" cy="10" r="3" fill="#000000"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Patterns and Gradients -->
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="16.6%" stop-color="#ff9900"/>
<stop offset="33.3%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="66.6%" stop-color="#0099ff"/>
<stop offset="83.3%" stop-color="#6633ff"/>
<stop offset="100%" stop-color="#ff00ff"/>
</linearGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#E0F7FF"/>
</linearGradient>
<linearGradient id="groundGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#8B4513"/>
<stop offset="50%" stop-color="#A0522D"/>
<stop offset="100%" stop-color="#8B4513"/>
</linearGradient>
<radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#f5c78e"/>
<stop offset="70%" stop-color="#cd8546"/>
<stop offset="100%" stop-color="#8b5a2b"/>
</radialGradient>
<filter id="cloudShadow" x="-20%" y="0%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
<feOffset in="blur" dx="2" dy="4" result="offsetBlur"/>
<feComponentTransfer in="offsetBlur">
<feFuncA type="linear" slope="0.3"/>
</feComponentTransfer>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<filter id="raceFlag">
<feTurbulence type="fractalNoise" baseFrequency="0.05" numOctaves="2" result="noise"/>
<feDisplacementMap in="SourceGraphic" in2="noise" scale="5" xChannelSelector="R" yChannelSelector="G"/>
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="220" fill="url(#skyGradient)"/>
<rect x="0" y="220" width="300" height="80" fill="url(#groundGradient)"/>
<!-- Rainbow -->
<path d="M -50,180 Q 150,80 350,180" stroke="url(#rainbowGradient)" stroke-width="15" fill="none" stroke-linecap="round" opacity="0.8"/>
<!-- Finish Line -->
<g transform="translate(260, 220)">
<rect x="-5" y="-40" width="10" height="40" fill="#333" filter="url(#raceFlag)"/>
<g transform="translate(0, -40)">
<rect x="-10" y="-10" width="20" height="10" fill="black" fill-opacity="0.8"/>
<rect x="-10" y="-10" width="10" height="5" fill="white" fill-opacity="0.8"/>
<rect x="0" y="-10" width="10" height="5" fill="white" fill-opacity="0.8"/>
<rect x="-10" y="-5" width="10" height="5" fill="white" fill-opacity="0.8"/>
<rect x="0" y="-5" width="10" height="5" fill="white" fill-opacity="0.8"/>
</g>
</g>
<!-- Racing Track -->
<path d="M 20,220 L 260,220" stroke="#8B4513" stroke-width="2" stroke-dasharray="5,3" opacity="0.7"/>
<!-- Snail -->
<g transform="translate(180, 210)">
<!-- Snail Shell -->
<path d="M 0,0 C -2,8 -10,10 -15,8 C -20,5 -22,-5 -15,-10 C -8,-15 0,-12 2,-5 C 4,0 2,5 0,0 Z" fill="url(#snailShellGradient)"/>
<path d="M -7,-1 C -7,-3 -9,-5 -12,-5 C -15,-5 -17,-3 -17,-1 C -17,1 -15,3 -12,3 C -9,3 -7,1 -7,-1 Z" fill="#8b5a2b" fill-opacity="0.3"/>
<!-- Snail Body -->
<path d="M 0,0 C 2,-2 5,-2 7,0 C 9,2 12,2 15,0 L 18,5 C 15,8 10,8 7,5 C 5,3 2,3 0,5 Z" fill="#a3c9a8"/>
<!-- Snail Eyes -->
<circle cx="12" cy="-2" r="1.5" fill="black"/>
<circle cx="12" cy="-2" r="0.5" fill="white"/>
<circle cx="16" cy="-2" r="1.5" fill="black"/>
<circle cx="16" cy="-2" r="0.5" fill="white"/>
<!-- Snail Antenna -->
<path d="M 14,-3 C 14,-6 13,-8 15,-10" stroke="#a3c9a8" stroke-width="0.7" fill="none"/>
<path d="M 17,-3 C 17,-6 18,-8 20,-10" stroke="#a3c9a8" stroke-width="0.7" fill="none"/>
<circle cx="15" cy="-10" r="0.8" fill="#ff9999"/>
<circle cx="20" cy="-10" r="0.8" fill="#ff9999"/>
<!-- Snail Trail -->
<path d="M 0,5 C -10,5 -20,3 -30,5 C -40,7 -50,5 -60,5 C -70,5 -80,7 -90,5 C -100,3 -110,5 -120,5 C -130,5 -140,3 -150,5" stroke="#a9dcd3" stroke-width="2" fill="none" opacity="0.7"/>
</g>
<!-- Cheetah -->
<g transform="translate(60, 205)">
<!-- Cheetah Body -->
<ellipse cx="0" cy="0" rx="25" ry="12" fill="#f0c246"/>
<ellipse cx="-15" cy="-5" rx="10" ry="8" fill="#f0c246"/>
<!-- Cheetah Spots -->
<circle cx="-20" cy="-5" r="2" fill="#000"/>
<circle cx="-13" cy="-8" r="1.5" fill="#000"/>
<circle cx="-10" cy="-3" r="2" fill="#000"/>
<circle cx="-5" cy="-5" r="1.5" fill="#000"/>
<circle cx="0" cy="-3" r="2" fill="#000"/>
<circle cx="5" cy="-5" r="1.5" fill="#000"/>
<circle cx="10" cy="-3" r="2" fill="#000"/>
<circle cx="15" cy="-5" r="1.5" fill="#000"/>
<circle cx="5" cy="3" r="2" fill="#000"/>
<circle cx="-5" cy="3" r="2" fill="#000"/>
<circle cx="-15" cy="3" r="1.5" fill="#000"/>
<!-- Cheetah Legs -->
<path d="M -15,10 L -18,20" stroke="#f0c246" stroke-width="3" stroke-linecap="round"/>
<path d="M -5,10 L -8,20" stroke="#f0c246" stroke-width="3" stroke-linecap="round"/>
<path d="M 5,10 L 8,20" stroke="#f0c246" stroke-width="3" stroke-linecap="round"/>
<path d="M 15,10 L 18,20" stroke="#f0c246" stroke-width="3" stroke-linecap="round"/>
<!-- Cheetah Tail -->
<path d="M 25,0 C 35,-5 40,5 45,-5" stroke="#f0c246" stroke-width="3" fill="none" stroke-linecap="round"/>
<!-- Cheetah Face -->
<circle cx="-22" cy="-5" r="1.5" fill="white"/>
<circle cx="-22" cy="-5" r="0.7" fill="black"/>
<path d="M -25,-5 C -27,-3 -27,-7 -25,-5 Z" fill="black"/>
<path d="M -25,-2 C -28,0 -25,0 -25,-2 Z" fill="black" stroke="black" stroke-width="0.5"/>
<!-- Speed Lines -->
<path d="M 25,0 L 35,0 M 30,-5 L 40,-5 M 30,5 L 40,5" stroke="#333" stroke-width="0.7" stroke-dasharray="2,2"/>
</g>
<!-- Cheering Clouds -->
<g filter="url(#cloudShadow)">
<!-- Cloud 1 -->
<g transform="translate(50, 100)">
<path d="M 0,0 C 0,-10 10,-15 20,-10 C 25,-20 40,-20 45,-10 C 55,-15 65,-5 60,5 C 65,15 55,20 45,15 C 40,25 25,25 20,15 C 10,20 0,15 0,5 C -5,5 -5,-5 0,0 Z" fill="white"/>
<circle cx="15" cy="5" r="2" fill="black"/>
<circle cx="35" cy="5" r="2" fill="black"/>
<path d="M 15,15 C 20,20 30,20 35,15" stroke="black" stroke-width="1.5" fill="none"/>
<!-- Speech Bubble -->
<path d="M 60,10 Q 70,10 75,5 L 85,15 L 80,5 Q 85,0 95,0 Q 105,0 110,5 Q 115,10 115,15 Q 115,20 110,25 Q 105,30 95,30 Q 85,30 80,25 Q 75,20 75,15 Q 75,13 76,10 L 60,10" fill="white" stroke="#333" stroke-width="1"/>
<text x="95" y="17" font-family="Arial" font-size="8" text-anchor="middle" fill="#333">GO SNAIL!</text>
</g>
<!-- Cloud 2 -->
<g transform="translate(200, 70)">
<path d="M 0,0 C 0,-10 10,-15 20,-10 C 25,-20 40,-20 45,-10 C 55,-15 65,-5 60,5 C 65,15 55,20 45,15 C 40,25 25,25 20,15 C 10,20 0,15 0,5 C -5,5 -5,-5 0,0 Z" fill="white"/>
<circle cx="15" cy="5" r="2" fill="black"/>
<circle cx="35" cy="5" r="2" fill="black"/>
<path d="M 15,15 C 20,20 30,20 35,15" stroke="black" stroke-width="1.5" fill="none"/>
<!-- Pom Poms -->
<g transform="translate(0, 25)">
<path d="M -5,-5 C 0,-10 5,-10 10,-5 C 15,0 15,5 10,10 C 5,15 0,15 -5,10 C -10,5 -10,0 -5,-5 Z" fill="#ff6666"/>
<path d="M 50,-5 C 55,-10 60,-10 65,-5 C 70,0 70,5 65,10 C 60,15 55,15 50,10 C 45,5 45,0 50,-5 Z" fill="#ff6666"/>
</g>
</g>
</g>
<!-- Sun -->
<g transform="translate(30, 40)">
<circle cx="0" cy="0" r="15" fill="#FFD700"/>
<g>
<path d="M 0,-20 L 0,-25 M 14,-14 L 18,-18 M 20,0 L 25,0 M 14,14 L 18,18 M 0,20 L 0,25 M -14,14 L -18,18 M -20,0 L -25,0 M -14,-14 L -18,-18" stroke="#FFD700" stroke-width="3" stroke-linecap="round"/>
</g>
<circle cx="-5" cy="-5" r="3" fill="#FFF" fill-opacity="0.6"/>
<path d="M -8,5 C -5,8 5,8 8,5" stroke="#FF8C00" stroke-width="1.5" fill="none"/>
<circle cx="-5" cy="0" r="1.5" fill="#FF8C00"/>
<circle cx="5" cy="0" r="1.5" fill="#FF8C00"/>
</g>
<!-- Grass Tufts -->
<g>
<path d="M 20,220 C 25,215 30,210 35,215 C 40,210 45,215 50,220" stroke="#3a5f0b" stroke-width="1" fill="none"/>
<path d="M 80,220 C 85,215 90,210 95,215 C 100,210 105,215 110,220" stroke="#3a5f0b" stroke-width="1" fill="none"/>
<path d="M 140,220 C 145,215 150,210 155,215 C 160,210 165,215 170,220" stroke="#3a5f0b" stroke-width="1" fill="none"/>
<path d="M 200,220 C 205,215 210,210 215,215 C 220,210 225,215 230,220" stroke="#3a5f0b" stroke-width="1" fill="none"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is more detailed, creative, and adheres closely to the prompt.
It clearly depicts a snail racing a cheetah under a rainbow with cheering clouds, incorporating expressive elements and vibrant visuals.
In contrast, Player 1's submission is minimalistic and lacks clarity in illustrating the prompt fully.
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.