Creative Challenge
"Galactic snail gliding on a rainbow path through space"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#00022e;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00083c;stop-opacity:1" />
</linearGradient>
<radialGradient id="shellGradient" cx="50%" cy="50%">
<stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4b0082;stop-opacity:1" />
</radialGradient>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
<stop offset="14.28%" style="stop-color:#ff7f00;stop-opacity:1" />
<stop offset="28.57%" style="stop-color:#ffff00;stop-opacity:1" />
<stop offset="42.86%" style="stop-color:#00ff00;stop-opacity:1" />
<stop offset="57.14%" style="stop-color:#0000ff;stop-opacity:1" />
<stop offset="71.43%" style="stop-color:#4b0082;stop-opacity:1" />
<stop offset="85.71%" style="stop-color:#8f00ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff0000;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<g transform="translate(150,150)">
<circle r="20" fill="#4b0082" filter="url(#glow)"/>
<path d="M-20,0 A20,20 0 0,1 0,20 L0,40 Q20,40 40,20 L20,0 Z" fill="url(#shellGradient)" filter="url(#glow)"/>
<path d="M-40,20 Q-60,40 -40,60 Q-20,80 -40,100 Q-60,120 -40,140 Q-20,160 -40,180" stroke="url(#rainbow)" stroke-width="4" fill="none"/>
</g>
<g transform="translate(150,150)">
<circle r="1" fill="#fff"/>
<circle r="1" fill="#fff" transform="translate(10,10)"/>
</g>
<g transform="translate(100,100)">
<circle r="0.5" fill="#fff"/>
<circle r="0.5" fill="#fff" transform="translate(10,10)"/>
</g>
<g transform="translate(200,200)">
<circle r="0.5" fill="#fff"/>
<circle r="0.5" fill="#fff" transform="translate(10,10)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color: #FF5F6D; stop-opacity: 1" />
<stop offset="25%" style="stop-color: #FFC371; stop-opacity: 1" />
<stop offset="50%" style="stop-color: #47E3FF; stop-opacity: 1" />
<stop offset="75%" style="stop-color: #61B15A; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #B06AB6; stop-opacity: 1" />
</linearGradient>
<radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #FFD700; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #FF4500; stop-opacity: 1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="black" />
<path d="M150 250 Q130 210 80 180 Q40 150 100 130 Q140 120 150 80 Q160 40 220 70 Q260 90 230 150 Q200 200 150 250 Z" fill="url(#rainbowGradient)" stroke="white" stroke-width="2"/>
<ellipse cx="120" cy="130" rx="20" ry="10" fill="#B0E0E6" opacity="0.7"/>
<g transform="translate(50 70)">
<path d="M60 100 C50 130, 90 130, 80 100 C75 80, 70 60, 90 60 C100 60, 95 80, 90 90 C85 100, 70 100, 60 100" fill="url(#snailShellGradient)" />
<circle cx="80" cy="55" r="10" fill="lavender" />
<circle cx="78" cy="54" r="5" fill="purple" />
<path d="M90 100 L110 90 C130 80, 135 120, 145 100" stroke="white" stroke-width="2" fill="none" />
</g>
<g>
<circle cx="250" cy="50" r="5" fill="#FFD700" />
<circle cx="70" cy="30" r="4" fill="#FF6347" />
<circle cx="180" cy="20" r="3" fill="#1E90FF" />
<circle cx="220" cy="100" r="6" fill="#32CD32" />
<circle cx="40" cy="250" r="2" fill="#FF1493" />
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the idea of a 'galactic snail' with a creative and colorful design that suggests a snail's form through abstract shapes.
The use of gradients and surrounding celestial elements enhances the space theme, creating a visually appealing composition.
In contrast, Player 1's image is less defined and doesn't as clearly represent a snail or a rainbow path, lacking the same level of creativity and adherence 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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"