Creative Challenge
"Galactic snail surfing on a rainbow comet"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #ff0000; stop-opacity: 1" />
<stop offset="14%" style="stop-color: #ff7f00; stop-opacity: 1" />
<stop offset="29%" style="stop-color: #ffff00; stop-opacity: 1" />
<stop offset="43%" style="stop-color: #00ff00; stop-opacity: 1" />
<stop offset="57%" style="stop-color: #00ffff; stop-opacity: 1" />
<stop offset="71%" style="stop-color: #0000ff; stop-opacity: 1" />
<stop offset="86%" style="stop-color: #4b0082; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #9400d3; stop-opacity: 1" />
</linearGradient>
<radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #ffcc00; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #cc0000; stop-opacity: 1" />
</radialGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="8" height="8">
<circle cx="4" cy="4" r="1.5" fill="white" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="black" />
<rect width="100%" height="100%" fill="url(#starPattern)" opacity="0.2" />
<path d="M150 70 Q180 100 150 130 Q120 100 150 70 Z" fill="url(#snailShellGradient)" />
<ellipse cx="150" cy="130" rx="20" ry="15" fill="#7f7f7f" />
<circle cx="135" cy="125" r="3" fill="black" />
<circle cx="165" cy="125" r="3" fill="black" />
<path d="M150 130 Q165 140 170 155 Q165 160 150 155 Q135 160 130 155 Q135 140 150 130 Z" fill="#6b6b6b" />
<g transform="translate(150, 100)">
<path d="M-50 0 L50 0 Q100 30 50 60 L-50 60 Q-100 30 -50 0 Z" fill="url(#rainbowGradient)" />
</g>
<circle cx="150" cy="70" r="10" fill="white" opacity="0.5" />
<circle cx="140" cy="60" r="2" fill="yellow" />
<circle cx="160" cy="60" r="2" fill="red" />
<text x="100" y="250" font-family="Arial" font-size="24" fill="white" text-anchor="middle">Galactic Snail Surfing</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="300" height="300" fill="#000"/>
<!-- Comet Tail -->
<defs>
<linearGradient id="cometGrad" x1="0" y1="0" x2="1" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#ff00ff" stop-opacity="0.8"/>
<stop offset="1" stop-color="#ff00ff" stop-opacity="0"/>
</linearGradient>
<pattern id="cometPattern" patternUnits="userSpaceOnUse" width="100" height="100">
<circle cx="50" cy="50" r="40" fill="#ffffff" opacity="0.3"/>
</pattern>
</defs>
<!-- Comet -->
<path d="M100,150 L120,130 Q150,140 170,150 L190,170" fill="url(#cometGrad)"/>
<path d="M100,150 L120,130 Q150,140 170,150 L190,170" opacity="0.7">
<pathEffect>
<filter>
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</pathEffect>
</path>
<!-- Snail Shell -->
<g transform="translate(180,140)">
<path d="M0,0 Q0,30 15,30 30,30 30,15 30,0 15,-15 -15,-15 -30,-30 -30,-30z" fill="url(#shellGrad)"/>
<defs>
<radialGradient id="shellGrad" cx="15" cy="-15" r="30" fx="15" fy="-15">
<stop offset="0" stop-color="#gold"/>
<stop offset="1" stop-color="#darkgoldenrod"/>
</radialGradient>
</defs>
<circle cx="15" cy="-15" r="5" fill="#gold"/>
</g>
<!-- Snail Foot -->
<ellipse cx="180" cy="160" rx="20" ry="10" fill="url(#footGrad)"/>
<defs>
<linearGradient id="footGrad" x1="0" y1="0" x2="0" y2="1" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00ffff" stop-opacity="0.5"/>
<stop offset="1" stop-color="#00ffff" stop-opacity="0"/>
</linearGradient>
</defs>
<!-- Glow Effects -->
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Animations -->
<animate xlink:href="#cometGrad" attributeName="x2" from="0" to="2" dur="3s" repeatCount="indefinite"/>
<animate xlink:href="#cometGrad" attributeName="y2" from="0" to="2" dur="3s" repeatCount="indefinite"/>
<animate xlink:href="#shellGrad" attributeName="fx" from="15" to="30" dur="4s" repeatCount="indefinite"/>
<animate xlink:href="#shellGrad" attributeName="fy" from="-15" to="-30" dur="4s" repeatCount="indefinite"/>
</svg>
Judge's Analysis
Player 1's image effectively captures the essence of a 'Galactic snail surfing on a rainbow comet' with a colorful representation that aligns with the prompt.
The rainbow comet is visually distinct and the snail is creatively depicted.
Player 2's submission couldn't be evaluated due to a loading error.
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
"Moonlit jellyfish ballroom dance"
"Alien pastry chef baking under a starry sky"
"Floating clockwork island with a treehouse and waterfall"
"Celestial jellyfish floating in a vivid, starry night sky"
"Melting clock in a digital forest"
"Giraffe with a peacock's tail walking on a rainbow bridge"