Creative Challenge
"A snail with a skyscraper shell gliding through a glowing, starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bodyGradient">
<stop offset="0%" stop-color="#FF99FF"/>
<stop offset="100%" stop-color="#FFFFFF"/>
</radialGradient>
<linearGradient id="skyGradient">
<stop offset="0%" stop-color="#1A0F3C"/>
<stop offset="100%" stop-color="#2B1B4F"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g transform="translate(150,150)">
<!-- Snail Body -->
<circle r="40" fill="url(#bodyGradient)" filter="url(#glow)"/>
<!-- Shell (Skyscraper) -->
<g transform="translate(0,30)">
<rect x="-20" y="-80" width="40" height="20" fill="#666"/>
<rect x="-15" y="-60" width="30" height="25" fill="#555"/>
<rect x="-10" y="-40" width="25" height="30" fill="#444"/>
<rect x="-5" y="-20" width="20" height="35" fill="#333"/>
<rect x="-2" y="0" width="15" height="40" fill="#222"/>
<rect x="-2" y="40" width="10" height="45" fill="#111"/>
<rect x="-1" y="80" width="5" height="50" fill="#000"/>
<rect x="-3" y="-100" width="40" height="10" fill="#777"/>
</g>
<!-- Snail Head -->
<circle cx="50" cy="-50" r="15" fill="url(#bodyGradient)"/>
<line x1="50" y1="-50" x2="80" y2="-70" stroke="#FF99FF" stroke-width="3"/>
<line x1="50" y1="-50" x2="80" y2="-30" stroke="#FF99FF" stroke-width="3"/>
<!-- Stars -->
<g filter="url(#glow)">
<polygon points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
<polygon x="150" y="100" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
<polygon x="200" y="50" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
<polygon x="50" y="180" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
<polygon x="250" y="120" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Sky Gradient -->
<radialGradient id="skyGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0b003b" />
<stop offset="100%" stop-color="#1b006b" />
</radialGradient>
<!-- Glow Gradient -->
<radialGradient id="glow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="rgba(255, 255, 255, 0.8)" />
<stop offset="100%" stop-color="rgba(255, 255, 255, 0)" />
</radialGradient>
<!-- Shell Gradient -->
<linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4e54c8" />
<stop offset="100%" stop-color="#8f94fb" />
</linearGradient>
<!-- Window Pattern -->
<pattern id="windowPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#4e54c8" />
<circle cx="3" cy="3" r="1" fill="#ffd700" />
<circle cx="7" cy="7" r="1" fill="#ffd700" />
<circle cx="3" cy="7" r="1" fill="#ffd700" />
<circle cx="7" cy="3" r="1" fill="#ffd700" />
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<g fill="white" opacity="0.8">
<circle cx="50" cy="60" r="1.5"/>
<circle cx="120" cy="80" r="1"/>
<circle cx="200" cy="40" r="2"/>
<circle cx="250" cy="70" r="1"/>
<circle cx="180" cy="120" r="1.5"/>
<circle cx="80" cy="150" r="1"/>
<circle cx="220" cy="200" r="1.5"/>
<circle cx="60" cy="220" r="1"/>
<circle cx="140" cy="250" r="2"/>
<circle cx="270" cy="180" r="1"/>
</g>
<!-- Glow Effect -->
<circle cx="150" cy="150" r="100" fill="url(#glow)" />
<!-- Snail Body -->
<ellipse cx="150" cy="220" rx="20" ry="10" fill="#6b5b95" />
<!-- Snail Head -->
<circle cx="135" cy="215" r="5" fill="#f7cac9" />
<circle cx="165" cy="215" r="5" fill="#f7cac9" />
<!-- Snail Antennae -->
<path d="M135 210 Q130 205 125 210" stroke="#f7cac9" stroke-width="1" fill="none"/>
<path d="M165 210 Q170 205 175 210" stroke="#f7cac9" stroke-width="1" fill="none"/>
<!-- Skyscraper Shell -->
<g transform="translate(150,220)">
<path d="
M0,0
spiral path representation
" fill="url(#shellGradient)" />
<!-- Simplified as concentric rectangles to represent skyscrapers -->
<g fill="url(#windowPattern)">
<rect x="-30" y="-30" width="60" height="60" />
<rect x="-25" y="-25" width="50" height="50" />
<rect x="-20" y="-20" width="40" height="40" />
<rect x="-15" y="-15" width="30" height="30" />
<rect x="-10" y="-10" width="20" height="20" />
<rect x="-5" y="-5" width="10" height="10" />
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the concept more effectively with the skyscraper shell and the glowing, starry night sky.
The composition includes a clearer representation of the skyscraper and the atmospheric background, adhering closely to the prompt.
Player 1's image is more abstract and does not clearly depict the elements of a snail or a skyscraper shell.
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 forest with trees playing musical instruments"
"Clock-faced tree with melting leaf numbers"
"Fish wearing top hats juggling starfish in a coral circus"
"Clock with mismatched hands inside a floating teacup"
"Giraffe surfing on a giant wave under a starry night sky"
"Surreal: Melting clock shaped like a dripping candle on a desert horizon"