Creative Challenge
"A snail racing a cheetah through a busy city street."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#4682B4"/>
</linearGradient>
<radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FF8C00"/>
</radialGradient>
<linearGradient id="snailBodyGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#8FBC8F"/>
<stop offset="100%" stop-color="#556B2F"/>
</linearGradient>
<linearGradient id="cheetahGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FFA500"/>
<stop offset="100%" stop-color="#FF4500"/>
</linearGradient>
<linearGradient id="roadGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#666"/>
<stop offset="100%" stop-color="#333"/>
</linearGradient>
<filter id="dropShadow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="2"/>
<feOffset dx="2" dy="2" result="offsetblur"/>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Sky Background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Busy Buildings -->
<g id="buildings" filter="url(#dropShadow)">
<g id="building1">
<rect x="5" y="20" width="40" height="80" fill="#2E4053"/>
<rect x="10" y="35" width="5" height="7" fill="#F1C40F"/>
<rect x="25" y="35" width="5" height="7" fill="#F1C40F"/>
<rect x="10" y="50" width="5" height="7" fill="#F1C40F"/>
<rect x="25" y="50" width="5" height="7" fill="#F1C40F"/>
</g>
<rect x="50" y="10" width="30" height="100" fill="#34495E"/>
<rect x="90" y="20" width="50" height="70" fill="#5D6D7E"/>
<rect x="150" y="5" width="40" height="110" fill="#2C3E50"/>
<rect x="200" y="15" width="40" height="80" fill="#1C2833"/>
<rect x="250" y="10" width="30" height="90" fill="#3D3D3D"/>
</g>
<!-- Road -->
<rect x="0" y="240" width="300" height="60" fill="url(#roadGradient)"/>
<line x1="0" y1="270" x2="300" y2="270" stroke="white" stroke-dasharray="5 5" stroke-width="2"/>
<!-- Cars -->
<rect x="80" y="255" width="20" height="10" fill="red" stroke="black" stroke-width="0.5"/>
<rect x="200" y="260" width="20" height="10" fill="blue" stroke="black" stroke-width="0.5"/>
<!-- Snail -->
<g id="snail" transform="translate(30,250)">
<circle cx="12" cy="10" r="8" fill="url(#snailShellGradient)" stroke="black" stroke-width="0.5"/>
<path d="M12,10 C5,15, 2,25, 12,30 L22,20 C20,15, 18,12, 12,10" fill="url(#snailBodyGradient)" stroke="black" stroke-width="0.5"/>
<line x1="12" y1="10" x2="8" y2="2" stroke="black" stroke-width="0.5"/>
<circle cx="8" cy="2" r="1" fill="black"/>
<line x1="12" y1="10" x2="16" y2="2" stroke="black" stroke-width="0.5"/>
<circle cx="16" cy="2" r="1" fill="black"/>
</g>
<!-- Speed Lines (Motion Effects) -->
<g id="speedLines" transform="translate(150,250)">
<line x1="-10" y1="-10" x2="-20" y2="-15" stroke="orange" stroke-width="1" stroke-linecap="round" opacity="0.7"/>
<line x1="0" y1="-12" x2="-10" y2="-20" stroke="orange" stroke-width="1" stroke-linecap="round" opacity="0.7"/>
<line x1="10" y1="-8" x2="0" y2="-15" stroke="orange" stroke-width="1" stroke-linecap="round" opacity="0.7"/>
</g>
<!-- Cheetah -->
<g id="cheetah" transform="translate(150,250)">
<ellipse cx="0" cy="0" rx="15" ry="6" fill="url(#cheetahGradient)" stroke="black" stroke-width="0.5"/>
<circle cx="-18" cy="-3" r="5" fill="url(#cheetahGradient)" stroke="black" stroke-width="0.5"/>
<polygon points="-21,-8 -16,-8 -19,-3" fill="url(#cheetahGradient)" stroke="black" stroke-width="0.5"/>
<polygon points="-23,-8 -20,-8 -21,-3" fill="url(#cheetahGradient)" stroke="black" stroke-width="0.5"/>
<path d="M15,0 C25,-5, 30,5, 20,10" fill="none" stroke="url(#cheetahGradient)" stroke-width="3" stroke-linecap="round"/>
<line x1="-5" y1="6" x2="-5" y2="15" stroke="black" stroke-width="1"/>
<line x1="5" y1="6" x2="5" y2="15" stroke="black" stroke-width="1"/>
<circle cx="0" cy="-2" r="1" fill="black"/>
<circle cx="4" cy="1" r="1" fill="black"/>
<circle cx="-3" cy="0" r="1" fill="black"/>
<circle cx="6" cy="-1" r="1" fill="black"/>
<circle cx="-5" cy="2" r="1" fill="black"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#a2d9ff"/>
<stop offset="100%" stop-color="#fcd5ce"/>
</linearGradient>
<linearGradient id="roadGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#555"/>
<stop offset="100%" stop-color="#333"/>
</linearGradient>
<radialGradient id="shellGrad" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ff9a8d"/>
<stop offset="100%" stop-color="#ff6f91"/>
</radialGradient>
<pattern id="windowPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="6" height="6" fill="#222"/>
</pattern>
</defs>
<!-- sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- buildings -->
<g>
<rect x="0" y="80" width="60" height="220" fill="#555"/>
<rect x="0" y="80" width="60" height="220" fill="url(#windowPattern)"/>
<rect x="70" y="100" width="50" height="200" fill="#666"/>
<rect x="70" y="100" width="50" height="200" fill="url(#windowPattern)"/>
<rect x="140" y="60" width="40" height="240" fill="#444"/>
<rect x="140" y="60" width="40" height="240" fill="url(#windowPattern)"/>
<rect x="200" y="120" width="70" height="180" fill="#777"/>
<rect x="200" y="120" width="70" height="180" fill="url(#windowPattern)"/>
</g>
<!-- road -->
<path d="M0,300 L300,300 L180,150 L120,150 Z" fill="url(#roadGrad)"/>
<path d="M150,150 L150,300" stroke="#fff" stroke-width="4" stroke-dasharray="10,10"/>
<!-- snail -->
<g transform="translate(90,250) scale(0.4)">
<path d="M-50,0 Q-80,20 -60,30 Q-90,30 -85,0 Q-90,-20 -60,-10 Q-80,-5 -50,0" fill="#6c6"/>
<circle cx="0" cy="0" r="50" fill="url(#shellGrad)"/>
<path d="M20,0 A20,20 0 1,1 0,20 A15,15 0 1,0 15,-3 A10,10 0 1,1 2,8" fill="none" stroke="#fff" stroke-width="3"/>
<g stroke="#333" stroke-width="4">
<line x1="10" y1="-40" x2="10" y2="-70"/>
<circle cx="10" cy="-75" r="5" fill="#fff"/>
<line x1="-10" y1="-40" x2="-10" y2="-70"/>
<circle cx="-10" cy="-75" r="5" fill="#fff"/>
</g>
</g>
<!-- cheetah -->
<g transform="translate(180,240) scale(0.3)">
<ellipse cx="0" cy="0" rx="80" ry="25" fill="#ffcc00"/>
<circle cx="90" cy="-10" r="20" fill="#ffcc00" stroke="#333" stroke-width="3"/>
<circle cx="95" cy="-15" r="5" fill="#fff"/>
<circle cx="97" cy="-15" r="2" fill="#333"/>
<g fill="#333">
<circle cx="-20" cy="-5" r="5"/>
<circle cx="0" cy="10" r="4"/>
<circle cx="30" cy="5" r="6"/>
<circle cx="60" cy="-2" r="5"/>
<circle cx="20" cy="-12" r="4"/>
<circle cx="45" cy="8" r="4"/>
</g>
<path d="M-40,15 l-10,30" stroke="#ffcc00" stroke-width="10" stroke-linecap="round"/>
<path d="M-10,15 l-10,30" stroke="#ffcc00" stroke-width="10" stroke-linecap="round"/>
<path d="M30,15 l-10,30" stroke="#ffcc00" stroke-width="10" stroke-linecap="round"/>
<path d="M60,15 l-10,30" stroke="#ffcc00" stroke-width="10" stroke-linecap="round"/>
</g>
<!-- speed lines -->
<g stroke="#fff" stroke-width="2" opacity="0.6">
<line x1="200" y1="200" x2="260" y2="180"/>
<line x1="190" y1="210" x2="250" y2="190"/>
<line x1="180" y1="220" x2="240" y2="200"/>
</g>
</svg>
Judge's Analysis
Player 2's submission demonstrates better creativity and adherence to the prompt.
The perspective of the road and city buildings adds depth and dynamism, while the snail and cheetah are more prominently depicted.
Player 1's submission is simpler and lacks the same level of detail, making Player 2's image more visually appealing and technically impressive.
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 floating tree with glowing roots above a calm, reflective lake at sunset."
"Cracked open geode revealing a glowing miniature city inside."
"A snail with a jetpack racing against a cheetah on a futuristic track."