Creative Challenge
"Galactic snail surfing on a rainbow wave"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbowWave" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: red; stop-opacity: 1" />
<stop offset="20%" style="stop-color: orange; stop-opacity: 1" />
<stop offset="40%" style="stop-color: yellow; stop-opacity: 1" />
<stop offset="60%" style="stop-color: green; stop-opacity: 1" />
<stop offset="80%" style="stop-color: blue; stop-opacity: 1" />
<stop offset="100%" style="stop-color: violet; stop-opacity: 1" />
</linearGradient>
<radialGradient id="galacticShell" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #f0e68c; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #7a7dff; stop-opacity: 1" />
</radialGradient>
<pattern id="cosmicBackground" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="#fff" opacity="0.3"/>
<circle cx="5" cy="5" r="1" fill="#fff" opacity="0.3"/>
<circle cx="9" cy="9" r="1" fill="#fff" opacity="0.3"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#cosmicBackground)" />
<path d="M0,200 Q150,100 300,200 L300,300 L0,300 Z" fill="url(#rainbowWave)" />
<g transform="translate(100, 160)">
<ellipse cx="0" cy="0" rx="35" ry="20" fill="url(#galacticShell)" />
<circle cx="-12" cy="-12" r="5" fill="#3d3c8b" />
<circle cx="12" cy="-12" r="5" fill="#3d3c8b" />
<ellipse cx="0" cy="5" rx="10" ry="5" fill="#f0e68c" />
<polygon points="-30,10 -20,31 20,31 30,10" fill="rgba(240, 230, 140, 0.8)" />
<path d="M-20,15 C-10,5 10,5 20,15" stroke="#fff" stroke-width="2" fill="none" />
<path d="M-10,5 Q0,2 10,5" stroke="#fff" stroke-width="2" fill="none" />
</g>
<g transform="translate(120, 170)">
<path d="M-10,0 C-10,-20 10,-20 10,0" fill="#3d3c8b" />
<circle cx="0" cy="-15" r="5" fill="#fff" />
<circle cx="5" cy="-15" r="2" fill="#3d3c8b" />
<circle cx="-5" cy="-15" r="2" fill="#3d3c8b" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red"/>
<stop offset="14%" stop-color="orange"/>
<stop offset="28%" stop-color="yellow"/>
<stop offset="42%" stop-color="green"/>
<stop offset="56%" stop-color="blue"/>
<stop offset="70%" stop-color="indigo"/>
<stop offset="84%" stop-color="violet"/>
<stop offset="100%" stop-color="red"/>
</linearGradient>
<radialGradient id="shell" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#996633"/>
<stop offset="30%" stop-color="#FFCC99"/>
<stop offset="100%" stop-color="#663300"/>
</radialGradient>
<pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="1" fill="white"/>
<circle cx="10" cy="8" r="0.5" fill="white"/>
<circle cx="18" cy="15" r="1.5" fill="white"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#stars)"/>
<path d="M10 150 c 50 -70 100 -50 150 0 c 50 50 70 120 40 140 c -30 20 -100 0 -160 -40 c -60 -40 -80 -100 -45 -125" fill="url(#rainbow)" stroke="white" stroke-width="3" filter="url(#waveGlow)">
<animateTransform attributeName="transform" type="translate" values="0 0; 5 0; 0 0" dur="4s" repeatCount="indefinite"/>
</path>
<filter id="waveGlow">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<path d="M60 160 c 20 -30 60 -40 80 -20 c 20 20 -40 60 -40 100 c 0 40 -20 40 -60 0" fill="url(#shell)" stroke="#331A00" stroke-width="2"/>
<circle cx="80" cy="155" r="10" fill="#331A00"/>
<animateTransform attributeName="transform" type="translate" values="0 0; 0 -5; 0 0" dur="2s" repeatCount="indefinite"/>
<circle cx="110" cy="150" r="7" fill="#331A00"/>
<animateTransform attributeName="transform" type="translate" values="0 0; 0 -3; 0 0" dur="2s" repeatCount="indefinite"/>
</svg>
Judge's Analysis
Player 2 captures the dynamic concept of a 'Galactic snail surfing on a rainbow wave' with a more vivid and flowing representation.
The snail's shape and position suggest motion and excitement, aligning closely with the prompt.
Additionally, the technical execution and visual appeal are stronger, with a coherent design that enhances the overall creativity and theme.
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
"Two robotic flamingos waltzing on a moonlit pond"
"An octopus knitting a colorful scarf with pirate ship sails"
"Floating teacup island with a waterfall of stars"
"Cartoon comet playing chess with a star in space"
"Tiny astronaut surfing on a giant slice of watermelon through space"
"Surrealist tree made entirely of cascading water streams, under a full moon"