Creative Challenge
"A snail with a spiral shell made of cityscape buildings"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#1E90FF"/>
</linearGradient>
<radialGradient id="shellGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#DAA520"/>
<stop offset="100%" stop-color="#8B4513"/>
</radialGradient>
<pattern id="brickPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#DEB887"/>
<path d="M0,5 L10,5 M5,0 L5,10" stroke="#8B4513" stroke-width="0.5"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<!-- Cityscape shell -->
<g transform="translate(150 150)">
<circle r="80" fill="url(#shellGradient)" />
<path d="M0,0 L70,70 M0,0 L50,80 M0,0 L30,95" stroke="#8B4513" stroke-width="6"/>
<rect x="-20" y="-60" width="40" height="120" fill="url(#brickPattern)" />
<rect x="-50" y="-40" width="30" height="80" fill="url(#brickPattern)" />
<rect x="20" y="-40" width="30" height="80" fill="url(#brickPattern)" />
<circle cx="40" cy="35" r="10" fill="#8B4513" />
<circle cx="30" cy="60" r="6" fill="#8B4513" />
</g>
<!-- Snail body -->
<g transform="translate(130, 190)">
<path d="M-20,0 Q0,20 20,0 T60,0 Q80,-10 100,10 T120,0" fill="#9ACD32" />
<circle cx="-30" cy="0" r="25" fill="#9ACD32" />
<ellipse cx="-40" cy="15" rx="10" ry="20" fill="#9ACD32" />
</g>
<!-- Snail tentacles -->
<line x1="110" y1="175" x2="130" y2="155" stroke="#556B2F" stroke-width="4"/>
<line x1="120" y1="180" x2="140" y2="160" stroke="#556B2F" stroke-width="4"/>
<circle cx="130" cy="155" r="5" fill="#2E8B57" />
<circle cx="140" cy="160" r="5" fill="#2E8B57" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#4682B4;stop-opacity:1"/>
</linearGradient>
<linearGradient id="buildingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF9500;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FF3D00;stop-opacity:1"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)"/>
<g transform="translate(150,150)">
<path d="M0,-70 Q-50,-100 -100,-50 Q-130,-30 -120,0 Q-110,60 -70,80 Q-50,90 -50,200 Q-80,250 0,250 Q80,250 50,200 Q50,90 70,80 Q110,60 120,0 Q130,-30 100,-50 Q50,-100 0,-70" fill="#7CFC00" />
<g transform="scale(0.5)">
<rect x="-10" y="-100" width="20" height="50" fill="url(#buildingGradient)" />
<rect x="20" y="-90" width="15" height="70" fill="url(#buildingGradient)" />
<rect x="-30" y="-110" width="10" height="60" fill="url(#buildingGradient)" />
<rect x="30" y="-45" width="25" height="90" fill="url(#buildingGradient)" />
<rect x="-50" y="-80" width="20" height="40" fill="url(#buildingGradient)" />
<rect x="-70" y="-60" width="15" height="80" fill="url(#buildingGradient)" />
<rect x="10" y="-50" width="10" height="30" fill="url(#buildingGradient)" />
<rect x="50" y="-100" width="30" height="80" fill="url(#buildingGradient)" />
</g>
<circle cx="0" cy="0" r="100" fill="none" stroke="#00912B" stroke-width="15" />
<circle cx="0" cy="0" r="50" fill="none" stroke="#FFDA44" stroke-width="5" />
<path d="M-25,-10 A25,25 0 0,1 25,10 A50,50 0 0,1 -25,-10" fill="none" stroke="#000" stroke-width="2" />
<path d="M30,20 L15,30 L20,40 L30,30 Z" fill="#FF6F61" />
<path d="M-30,20 L-15,30 L-20,40 L-30,30 Z" fill="#FF6F61" />
<text x="0" y="15" text-anchor="middle" fill="white" font-family="Arial" font-size="12">Snail City</text>
</g>
</svg>
Judge's Analysis
Player 1's image creatively integrates the cityscape into the snail's shell with a clear spiral pattern, adhering closely to the prompt.
The use of contrasting colors and a distinct background adds to its visual appeal.
Player 2's design, while colorful, lacks a clear spiral structure and the cityscape is less integrated with the snail's form.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"