Creative Challenge
"A snail with a galaxy shell under a tiny rainstorm"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Galaxy Shell -->
<defs>
<radialGradient id="galaxy" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#3498db" stop-opacity="1"/>
<stop offset="25%" stop-color="#2ecc71" stop-opacity="1"/>
<stop offset="50%" stop-color="#f1c40f" stop-opacity="1"/>
<stop offset="75%" stop-color="#e74c3c" stop-opacity="1"/>
<stop offset="100%" stop-color="#9b59b6" stop-opacity="1"/>
</radialGradient>
<pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#fff" opacity="0.5"/>
</pattern>
</defs>
<path d="M150 150 L150 200 A 50 50 0 0 1 200 200 L200 150 Z" fill="url(#galaxy)" />
<path d="M150 150 L150 200 A 50 50 0 0 1 200 200 L200 150 Z" fill="url(#stars)" opacity="0.5" />
<!-- Snail Body -->
<path d="M220 170 C220 170 230 180 240 190" fill="#8e44ad" />
<path d="M240 190 C240 190 250 200 260 210" fill="#8e44ad" />
<path d="M260 210 C260 210 270 220 280 230" fill="#8e44ad" />
<!-- Snail Antennae -->
<path d="M220 170 L230 160" stroke="#8e44ad" stroke-width="2" />
<path d="M220 170 L230 180" stroke="#8e44ad" stroke-width="2" />
<!-- Rain Drops -->
<circle cx="120" cy="100" r="5" fill="#87ceeb" />
<circle cx="180" cy="120" r="5" fill="#87ceeb" />
<circle cx="220" cy="140" r="5" fill="#87ceeb" />
<circle cx="260" cy="160" r="5" fill="#87ceeb" />
<!-- Rain Trails -->
<path d="M120 100 L120 90" stroke="#87ceeb" stroke-width="1" stroke-dasharray="5,5" />
<path d="M180 120 L180 110" stroke="#87ceeb" stroke-width="1" stroke-dasharray="5,5" />
<path d="M220 140 L220 130" stroke="#87ceeb" stroke-width="1" stroke-dasharray="5,5" />
<path d="M260 160 L260 150" stroke="#87ceeb" stroke-width="1" stroke-dasharray="5,5" />
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color: #a1c4fd; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #6789de; stop-opacity: 1" />
</linearGradient>
<radialGradient id="galaxyShell" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #000; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #000; stop-opacity: 1" />
<circle cx="50%" cy="50%" r="35%" fill="#0000ff" opacity="0.5" />
<circle cx="45%" cy="45%" r="30%" fill="#ff00ff" opacity="0.5" />
</radialGradient>
</defs>
<!-- Rain -->
<g id="rain">
<line x1="150" y1="0" x2="150" y2="100" stroke="url(#rainGradient)" stroke-width="2" />
<line x1="140" y1="0" x2="140" y2="100" stroke="url(#rainGradient)" stroke-width="2" />
<line x1="160" y1="0" x2="160" y2="100" stroke="url(#rainGradient)" stroke-width="2" />
<line x1="130" y1="0" x2="130" y2="100" stroke="url(#rainGradient)" stroke-width="2" />
<line x1="170" y1="0" x2="170" y2="100" stroke="url(#rainGradient)" stroke-width="2" />
</g>
<!-- Snail Body -->
<path d="M150 200 Q180 230 150 260 Q120 230 150 200" fill="#a52a2a" stroke="#800000" stroke-width="2" />
<!-- Snail Shell -->
<path d="M150 200 C140 180 130 160 120 140 C110 120 100 100 90 80 C80 60 70 40 60 20 C50 0 40 -20 30 -40 C20 -60 10 -80 0 -100 C-10 -120 -20 -140 -30 -160 C-40 -180 -50 -200 -60 -220 C-70 -240 -80 -260 -90 -280 C-100 -300 -110 -320 -120 -340 C-130 -360 -140 -380 -150 -400 C-160 -420 -170 -440 -180 -460 C-190 -480 -200 -500 -210 -520 C-220 -540 -230 -560 -240 -580 C-250 -600 -260 -620 -270 -640 C-280 -660 -290 -680 -300 -700" fill="url(#galaxyShell)" />
<!-- Snail Eye -->
<circle cx="170" cy="180" r="10" fill="#000" />
<circle cx="172" cy="178" r="3" fill="#fff" />
</svg>
Judge's Analysis
Player 1's image effectively incorporates a colorful galaxy pattern on the snail's shell, which aligns well with the prompt.
The addition of rain droplets enhances the theme.
Player 2's image lacks the galaxy element on the shell and features a more simplistic design, making Player 1's submission more creative and visually appealing.
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
"Giraffe in a teacup with patterned clouds overhead"
"Glowing jellyfish dance under moonlit waters"
"A giraffe with a bowtie reading a book under a starlit sky"
"Levitating teacups dancing with fireflies under a full moon"
"Fractal octopus in neon, each tentacle a different pattern"
"An umbrella made of clouds, catching raindrops shaped like tiny suns"