Creative Challenge
"Giant snail gliding across a sprawling cityscape, carrying a glass terrarium on its shell"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FDB813" />
<stop offset="100%" stop-color="#FD4720" />
</linearGradient>
<radialGradient id="snailBodyGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#76b852" />
<stop offset="100%" stop-color="#8DC26F" />
</radialGradient>
<linearGradient id="glassGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#C8F0FF" stop-opacity="0.8" />
<stop offset="100%" stop-color="#88D0F0" stop-opacity="0.3" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g id="cityscape">
<rect x="30" y="120" width="25" height="180" fill="#2F4F4F" opacity="0.7" />
<rect x="60" y="100" width="20" height="200" fill="#36454F" opacity="0.7" />
<rect x="90" y="140" width="30" height="160" fill="#455560" opacity="0.8" />
<rect x="130" y="80" width="35" height="220" fill="#2F4F4F" opacity="0.7" />
<rect x="170" y="110" width="25" height="190" fill="#36454F" opacity="0.7" />
<rect x="200" y="130" width="20" height="170" fill="#455560" opacity="0.8" />
<rect x="230" y="90" width="30" height="210" fill="#2F4F4F" opacity="0.7" />
</g>
<g id="snail">
<path d="M80,250 C70,245 60,255 50,250" stroke="#A8E6CF" stroke-width="4" fill="none" opacity="0.6" />
<ellipse cx="150" cy="250" rx="70" ry="20" fill="url(#snailBodyGrad)" />
<circle cx="100" cy="240" r="25" fill="url(#glassGrad)" stroke="#88D0F0" stroke-width="2" fill-opacity="0.6" />
<path d="M90,240 A10,10 0 1,1 100,240 A5,5 0 1,0 90,240" fill="none" stroke="#88D0F0" stroke-width="1" />
<circle cx="220" cy="250" r="10" fill="url(#snailBodyGrad)" />
<line x1="223" y1="242" x2="230" y2="230" stroke="#4A7B38" stroke-width="2" />
<circle cx="230" cy="230" r="2" fill="#000" />
<line x1="217" y1="242" x2="210" y2="230" stroke="#4A7B38" stroke-width="2" />
<circle cx="210" cy="230" r="2" fill="#000" />
<path d="M150,250 Q160,245 170,250 T190,250" stroke="#61892F" stroke-width="2" fill="none" opacity="0.5" />
</g>
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#006064" />
<stop offset="100%" stop-color="#1E575B" />
</linearGradient>
<linearGradient id="snailGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#00BFFF" />
</linearGradient>
<linearGradient id="shellGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#F0E68C" />
<stop offset="100%" stop-color="#DAA520" />
</linearGradient>
<pattern id="buildingPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect x="0" y="0" width="10" height="10" fill="#483D8B" />
<rect x="5" y="5" width="5" height="5" fill="#6A5ACD" />
</pattern>
</defs>
<rect x="0" y="150" width="300" height="150" fill="url(#cityGradient)" />
<g transform="translate(150, 180)">
<path d="M-50,0 Q-40,20 -30,30 T0,50 T30,30 T40,20 T50,0 T40,-20 T30,-30 T0,-50 T-30,-30 T-40,-20 Z" fill="url(#snailGradient)" />
<path d="M-25,0 Q-20,10 -15,15 T0,20 T15,15 T20,10 T25,0 T20,-10 T15,-15 T0,-20 T-15,-15 T-20,-10 Z" fill="url(#shellGradient)" transform="translate(0,-10)" />
</g>
<g transform="translate(150, 180)">
<rect x="-10" y="-60" width="20" height="40" fill="#90EE90" />
<rect x="-5" y="-45" width="10" height="30" fill="#32CD32" />
<rect x="0" y="-30" width="5" height="20" fill="#006400" />
</g>
<g transform="translate(150, 180)">
<rect x="-15" y="-80" width="30" height="15" fill="url(#buildingPattern)" />
<rect x="-10" y="-90" width="20" height="10" fill="url(#buildingPattern)" />
</g>
<g transform="translate(150, 180)">
<circle cx="0" cy="-100" r="10" fill="#FFD700" />
<circle cx="5" cy="-110" r="5" fill="#FFD700" />
<circle cx="-5" cy="-110" r="5" fill="#FFD700" />
</g>
</svg>
Judge's Analysis
Player 1's image clearly depicts a giant snail gliding across a cityscape with a visible glass terrarium on its shell, directly adhering to the prompt.
The composition effectively combines the elements with a vibrant background, enhancing visual appeal.
Player 2's image is more abstract and less clear in conveying the concept of a snail or a cityscape, thus not adhering as closely 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
"Frog rock band on lily pads, moonlit swamp stage"
"Surreal garden with floating paper cranes and glowing mushrooms"
"Mona Lisa with a VR headset, immersed in a digital landscape"
"Glowing jellyfish cityscape under a starlit ocean"
"A giraffe wearing galactic pajamas, stargazing through a telescope"
"Giant snail wearing a skyscraper shell, with windows glowing like city lights"