Creative Challenge
"A snail with a cityscape shell in retro-futuristic style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Gradient definitions -->
<defs>
<linearGradient id="neon-pink" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="100%" stop-color="#FFC0CB" />
</linearGradient>
<linearGradient id="city-sunset" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FFC107" />
<stop offset="50%" stop-color="#FF9800" />
<stop offset="100%" stop-color="#FF3737" />
</linearGradient>
<pattern id="circuit-board" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="#181818" />
<path d="M 5 5 h 10 v 10 h -10 v -10" stroke="#33CC33" stroke-width="2" fill="none" />
<path d="M 15 15 h -10 v -10 h 10 v 10" stroke="#33CC33" stroke-width="2" fill="none" />
</pattern>
</defs>
<!-- Snail body -->
<path d="M 150 225 a 75 75 0 0 0 -75 75 v 25 a 75 75 0 0 0 150 0 v -25 a 75 75 0 0 0 -75 -75" fill="#66CC66" stroke="#33CC33" stroke-width="2" />
<!-- Cityscape shell -->
<path d="M 75 75 a 75 75 0 0 0 150 0 a 75 75 0 0 0 -150 0" fill="url(#city-sunset)" stroke="#663300" stroke-width="2" />
<rect x="100" y="50" width="100" height="150" fill="url(#circuit-board)" rx="10" />
<path d="M 120 70 h 60 v 30 h -60 v -30" fill="#CCCC00" stroke="#663300" stroke-width="2" />
<path d="M 150 120 a 20 20 0 0 0 40 0 a 20 20 0 0 0 -40 0" fill="#CCCC00" stroke="#663300" stroke-width="2" />
<path d="M 180 170 h -60 v -30 h 60 v 30" fill="#CCCC00" stroke="#663300" stroke-width="2" />
<!-- Neon accents -->
<path d="M 90 90 h 120 v 20 h -120 v -20" stroke="url(#neon-pink)" stroke-width="4" fill="none" />
<path d="M 120 140 h 60 v 20 h -60 v -20" stroke="url(#neon-pink)" stroke-width="4" fill="none" />
<circle cx="150" cy="190" r="10" fill="url(#neon-pink)" />
<!-- Eye stalks -->
<path d="M 140 240 h 20 v 20 h -20 v -20" fill="#66CC66" stroke="#33CC33" stroke-width="2" />
<path d="M 160 240 h 20 v 20 h -20 v -20" fill="#66CC66" stroke="#33CC33" stroke-width="2" />
<circle cx="150" cy="260" r="5" fill="#33CC33" />
<circle cx="170" cy="260" r="5" fill="#33CC33" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF6F61"/>
<stop offset="100%" stop-color="#FFD700"/>
</linearGradient>
<linearGradient id="shellGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#6B5B95"/>
<stop offset="100%" stop-color="#88B04B"/>
</linearGradient>
<linearGradient id="bodyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#F7CAC9"/>
<stop offset="100%" stop-color="#92A8D1"/>
</linearGradient>
<pattern id="cityPattern" x="0" y="0" width="0.1" height="0.1">
<rect x="0" y="0" width="10" height="20" fill="#2E4053"/>
<rect x="20" y="0" width="10" height="30" fill="#34495E"/>
<rect x="40" y="0" width="15" height="25" fill="#5D6D7E"/>
<rect x="60" y="0" width="12" height="35" fill="#85929E"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g transform="translate(100,150)">
<ellipse cx="50" cy="0" rx="20" ry="15" fill="url(#bodyGradient)"/>
<path d="M 50 0 C 60 20, 80 20, 90 0 C 80 -20, 60 -20, 50 0 Z" fill="url(#bodyGradient)"/>
<circle cx="70" cy="-10" r="3" fill="#000"/>
<path d="M 30 0 Q 40 10, 50 0" fill="none" stroke="#000" stroke-width="2"/>
<ellipse cx="50" cy="-40" rx="60" ry="40" fill="url(#shellGradient)"/>
<ellipse cx="50" cy="-40" rx="55" ry="35" fill="url(#cityPattern)"/>
</g>
<text x="150" y="280" font-family="Arial, sans-serif" font-size="14" fill="#000" text-anchor="middle">Retro-Futuristic Snail City</text>
</svg>
Judge's Analysis
Player 1's submission creatively integrates a cityscape into the snail's shell, using vibrant retro-futuristic colors and geometric designs that enhance the theme.
The composition is visually engaging and technically well-executed, adhering closely to the prompt.
Player 2's image, while clean and minimalist, lacks the complexity and creativity seen in Player 1's work.
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
"Rainbow octopus juggling donuts in space"
"Astronaut playing chess with a giant snail on a starry cliff"
"Dancing skyscraper in a meadow"
"Dancing jellyfish in a neon cyberpunk ocean"
"Clockwork dragon breathing gears and cogs instead of fire"
"Floating city on a giant turtle's back, with glowing crystal buildings"