Creative Challenge
"An astronaut planting a marigold on the moon"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background gradient -->
<linearGradient id="moonGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#333" stop-opacity="1"/>
<stop offset="50%" stop-color="#444" stop-opacity="1"/>
<stop offset="100%" stop-color="#555" stop-opacity="1"/>
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#moonGradient)"/>
<!-- Crater pattern -->
<pattern id="craters" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#666" opacity="0.5"/>
<circle cx="15" cy="15" r="2" fill="#666" opacity="0.3"/>
</pattern>
<rect x="0" y="0" width="300" height="300" fill="url(#craters)" opacity="0.8"/>
<!-- Astronaut -->
<g transform="translate(130, 100)">
<path d="M0 0L-10 20H10V0Z" fill="#fff" stroke="#000" stroke-width="2"/>
<circle cx="0" cy="20" r="10" fill="#fff" stroke="#000" stroke-width="2"/>
<rect x="-5" y="25" width="10" height="15" fill="#fff" stroke="#000" stroke-width="2"/>
<g transform="rotate(45)">
<rect x="5" y="35" width="10" height="5" fill="#fff" stroke="#000" stroke-width="2"/>
<rect x="15" y="35" width="5" height="5" fill="#fff" stroke="#000" stroke-width="2"/>
</g>
</g>
<!-- Marigold -->
<g transform="translate(170, 120)">
<path d="M0 0L-5 10H5V0Z" fill="#ffd700" stroke="#008000" stroke-width="2"/>
<circle cx="0" cy="10" r="5" fill="#ffd700" stroke="#008000" stroke-width="2"/>
<rect x="-3" y="12" width="6" height="6" fill="#ffd700" stroke="#008000" stroke-width="2"/>
</g>
<!-- Shadow and reflection -->
<ellipse cx="170" cy="150" rx="10" ry="5" fill="#333" opacity="0.5"/>
<path d="M170 150L155 160H185V150Z" fill="#333" opacity="0.5"/>
<!-- Sunlight -->
<radialGradient id="sunlight" cx="0" cy="0" r="100" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#fff" stop-opacity="1"/>
<stop offset="100%" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<circle cx="220" cy="50" r="100" fill="url(#sunlight)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="marigoldGrad">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FF6B35"/>
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#FFFFFF"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="#1A1A1A"/>
<g transform="translate(150,150)">
<!-- Moon Surface -->
<path d="M0,100 Q50,120 100,100 Q150,80 200,100 Q250,120 300,100" fill="#3A3A3A"/>
<g filter="url(#glow)">
<!-- Astronaut -->
<circle cx="-50" cy="-30" r="20" fill="#5B5B5B"/>
<rect x="-60" y="-70" width="40" height="80" fill="#5B5B5B"/>
<rect x="-55" y="-150" width="30" height="60" fill="#5B5B5B"/>
<circle cx="-50" cy="-35" r="15" fill="url(#marigoldGrad)"/>
<rect x="-65" y="-130" width="30" height="40" fill="#FF0000"/>
<rect x="-65" y="-130" width="30" height="40" fill="#FFFFFF" opacity="0.2"/>
</g>
<!-- Marigold -->
<circle cx="50" cy="-20" r="30" fill="url(#marigoldGrad)" filter="url(#glow)"/>
<rect x="40" y="10" width="20" height="80" fill="#85BB65" filter="url(#glow)"/>
<rect x="35" y="90" width="30" height="20" fill="#6D4C41" filter="url(#glow)"/>
<!-- Shooting Stars -->
<path d="M-100,20 L-80,30 L-90,40" fill="#4DABF7" opacity="0.5"/>
<path d="M100,20 L80,30 L90,40" fill="#4DABF7" opacity="0.5"/>
<!-- Craters -->
<circle cx="-80" cy="50" r="15" fill="#4A4A4A" filter="url(#glow)"/>
<circle cx="80" cy="50" r="15" fill="#4A4A4A" filter="url(#glow)"/>
<!-- Stars -->
<rect width="300" height="300" fill="url(#stars)" opacity="0.1"/>
</g>
</svg>
Judge's Analysis
Player 2's submission creatively represents the concept of an astronaut planting a marigold on the moon with clear and vibrant colors, including a recognizable flower and astronaut shape.
The composition is dynamic and visually appealing, capturing the whimsical nature of the prompt effectively.
Player 1's image lacks detail and clarity, making it less engaging and harder to interpret in the context of 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
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"
"Peacock with clockwork feathers in a digital sunset"