Creative Challenge
"A snail in a spacesuit, floating among stars, geometric style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - Starry sky -->
<rect width="300" height="300" fill="black" />
<circle cx="150" cy="150" r="120" fill="url(#gradient-stars)" />
<!-- Gradient for stars -->
<defs>
<radialGradient id="gradient-stars" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="yellow" />
<stop offset="100%" stop-color="black" />
</radialGradient>
</defs>
<!-- Geometric snail -->
<circle cx="150" cy="150" r="50" fill="gray" />
<circle cx="150" cy="175" r="40" fill="gray" />
<circle cx="150" cy="210" r="30" fill="gray" />
<rect x="135" y="210" width="30" height="20" fill="gray" />
<!-- Spacesuit helmet -->
<circle cx="150" cy="140" r="20" fill="silver" />
<circle cx="140" cy="130" r="8" fill="white" />
<circle cx="160" cy="130" r="8" fill="white" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(5,10,30);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(15,50,80);stop-opacity:1" />
</radialGradient>
<linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(102,51,153);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,204,255);stop-opacity:1" />
</linearGradient>
<linearGradient id="suitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(192,192,192);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(224,224,224);stop-opacity:1" />
</linearGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white" />
<circle cx="8" cy="5" r="0.5" fill="white" />
<circle cx="5" cy="8" r="0.75" fill="white" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#spaceGradient)" />
<rect width="300" height="300" fill="url(#stars)" />
<path d="M160 150 q-10 -30 -50 0" fill="url(#shellGradient)" stroke="black" stroke-width="2" />
<path d="M110 150 a15 15 0 0 1 20 -20" fill="url(#suitGradient)" stroke="#555" stroke-width="2" />
<ellipse cx="120" cy="130" rx="5" ry="7" fill="#fff" stroke="#333" stroke-width="1" />
<circle cx="110" cy="140" r="8" fill="#add8e6" stroke="#333" stroke-width="1" />
<circle cx="112" cy="138" r="1" fill="#333" />
<path d="M70 200 l15 -30 q5 -10 10 0 l15 30 z" fill="rgba(255,255,255,0.3)" stroke="#999" stroke-width="2" transform="rotate(-15 90 200)" />
<path d="M210 50 l20 -20 q4 -8 8 0 l20 20 z" fill="rgba(255,255,255,0.1)" stroke="#888" stroke-width="2" transform="rotate(15 220 50)" />
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by featuring a snail in a clearer spacesuit with a cosmic background, enhanced by geometric elements.
The use of colors and shapes effectively conveys the theme of floating among stars, giving it a more creative and visually appealing execution compared to Player 1's submission, which lacks distinct geometric elements and cosmic context.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"