Creative Challenge
"Astronaut with an umbrella on a raining moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#e6e6e6;stop-opacity:1" />
</radialGradient>
<linearGradient id="backgroundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#0a0a2e;stop-opacity:1" />
<stop offset="100%" style="stop-color:#1a1a4e;stop-opacity:1" />
</linearGradient>
<pattern id="rainDots" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="0.5" fill="#93d6ff"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#backgroundGradient)"/>
<!-- Moon -->
<circle cx="150" cy="100" r="80" fill="url(#moonGradient)" stroke="#ffffff" stroke-width="2"/>
<!-- Craters -->
<circle cx="120" cy="80" r="8" fill="#333"/>
<circle cx="180" cy="90" r="6" fill="#333"/>
<circle cx="140" cy="120" r="4" fill="#333"/>
<!-- Rain -->
<rect x="0" y="0" width="300" height="300" fill="url(#rainDots)" opacity="0.2"/>
<!-- Astronaut -->
<path d="M150,180 L150,220 Q160,230 170,220 L170,180 Q170,170 150,170 Z" fill="#ff9966"/>
<circle cx="150" cy="160" r="20" fill="#ff9966"/>
<rect x="145" y="185" width="10" height="20" fill="#ff9966"/>
<path d="M150,180 L155,195 L165,190 L160,185 Z" fill="#ff9966"/>
<!-- Umbrella -->
<path d="M150,180 L150,160 Q160,155 170,160 L170,180 Q170,175 150,175 Z" fill="#ff66cc"/>
<rect x="145" y="155" width="10" height="20" fill="#ff66cc"/>
<!-- Rain Drops -->
<path d="M50,50 L100,60 L150,70" stroke="#93d6ff" stroke-width="2" opacity="0.8"/>
<path d="M200,40 L250,50" stroke="#93d6ff" stroke-width="2" opacity="0.8"/>
<path d="M100,80 L120,90 L140,100" stroke="#93d6ff" stroke-width="2" opacity="0.8"/>
<!-- Stars -->
<circle cx="200" cy="30" r="1" fill="#fff"/>
<circle cx="250" cy="50" r="1" fill="#fff"/>
<circle cx="30" cy="80" r="1" fill="#fff"/>
<circle cx="80" cy="20" r="1" fill="#fff"/>
<circle cx="180" cy="20" r="1" fill="#fff"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #000033; stop-opacity:1" />
<stop offset="100%" style="stop-color: #000011; stop-opacity:1" />
</linearGradient>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FFFFFF; stop-opacity:1" />
<stop offset="100%" style="stop-color:#D3D3D3; stop-opacity:1" />
</radialGradient>
<pattern id="rainPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="1" fill="blue" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<circle cx="220" cy="100" r="50" fill="url(#moonGradient)" />
<g transform="translate(100, 200)">
<path d="M 0 0 L 30 30 L 60 0 Z" fill="#FFD700" />
<rect x="15" y="30" width="30" height="40" fill="#2E8B57" />
<circle cx="30" cy="35" r="10" fill="#FFD700" />
<path d="M 15 70 Q 30 85 45 70" stroke="#2E8B57" stroke-width="2" fill="none" />
<path d="M 30 40 L 30 70" stroke="#2E8B57" stroke-width="2" fill="none" />
<path d="M 30 70 L 45 70" stroke="#2E8B57" stroke-width="2" fill="none" />
<path d="M 30 70 L 15 70" stroke="#2E8B57" stroke-width="2" fill="none" />
</g>
<path d="M 100 200 Q 150 150 200 200" stroke="blue" stroke-width="2" fill="none" />
<rect x="0" y="250" width="300" height="50" fill="url(#rainPattern)" />
</svg>
Judge's Analysis
Player 2's submission better captures the idea of 'Astronaut with an umbrella on a raining moon' by clearly depicting an umbrella and the moon in the composition.
The use of colors and elements like rain dots adds to the visual appeal and adherence to the prompt.
Player 1's submission lacks clarity in representing the key elements of the 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
"Dancing eggplant wearing a disco ball helmet"
"Snail in a speedboat race, scarf fluttering"
"Neon jellyfish dancing in a thunderstorm"
"A snail with a cityscape on its shell at sunset"
"Floating clockwork jellyfish in a starry nebula"
"Dancing toaster with a top hat, releasing colorful balloons"