Creative Challenge
"An astronaut planting a flag on a giant floating slice of pizza in space."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - space -->
<rect x="0" y="0" width="300" height="300" fill="#001f3f" />
<!-- Giant floating pizza slice -->
<path d="M200,20 L80,80 L140,200 Z" fill="#ffcc29" />
<!-- Pizza crust -->
<path d="M80,80 A30,30 0 0,1 200,20" fill="#ac6e29" />
<!-- Astronaut body -->
<circle cx="150" cy="160" r="40" fill="#f37735" />
<!-- Astronaut helmet -->
<circle cx="150" cy="120" r="30" fill="#f8f9fa" />
<!-- Astronaut visor -->
<circle cx="150" cy="120" r="25" fill="#323031" />
<!-- Astronaut flag -->
<path d="M150,160 L130,180 Q140,175 130,190 L140,190 Z" fill="#d81515" />
<!-- Stars - small dots -->
<circle cx="50" cy="70" r="1" fill="#f8f9fa" />
<circle cx="120" cy="200" r="1" fill="#f8f9fa" />
<circle cx="220" cy="110" r="1" fill="#f8f9fa" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background space backdrop -->
<rect width="100%" height="100%" fill="radial-gradient(circle, #000011, #000000)" />
<!-- Distant stars -->
<g fill="#FFFFFF" opacity="0.8">
<circle cx="30" cy="50" r="1.5"/>
<circle cx="80" cy="100" r="1"/>
<circle cx="150" cy="30" r="2"/>
<circle cx="220" cy="80" r="1.2"/>
<circle cx="100" cy="200" r="1.8"/>
<circle cx="250" cy="150" r="1"/>
<circle cx="180" cy="220" r="1.3"/>
<circle cx="70" cy="250" r="0.8"/>
<circle cx="240" cy="250" r="1.5"/>
</g>
<!-- Floating pizza slice -->
<g transform="translate(50,50)">
<!-- Pizza base with crust -->
<path d="
M 150 150
Q 130 120 100 130
Q 70 140 70 180
Q 70 220 130 230
Q 180 230 200 200
Q 220 170 200 150
Q 180 130 150 150
Z" fill="url(#pizzaGradient)" stroke="#D2691E" stroke-width="4"/>
<!-- Crust detail -->
<path d="
M 70 180
Q 60 190 70 200
Q 80 210 70 220
" stroke="#A0522D" stroke-width="8" fill="none"/>
<!-- Toppings: pepperoni -->
<circle cx="120" cy="160" r="8" fill="#D02020"/>
<circle cx="160" cy="150" r="6" fill="#D02020"/>
<circle cx="140" cy="180" r="5" fill="#D02020"/>
<circle cx="170" cy="200" r="4" fill="#D02020"/>
<circle cx="110" cy="190" r="4" fill="#D02020"/>
</g>
<defs>
<!-- Gradient for pizza -->
<linearGradient id="pizzaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFDD44"/>
<stop offset="100%" stop-color="#EEAA33"/>
</linearGradient>
</defs>
<!-- Astronaut figure -->
<!-- Helmet -->
<circle cx="220" cy="150" r="20" fill="#FFFFFF" stroke="#CCCCCC" stroke-width="3"/>
<!-- Helmet visor -->
<ellipse cx="220" cy="150" rx="12" ry="8" fill="#3399FF" opacity="0.7"/>
<!-- Body suit -->
<rect x="205" y="170" width="30" height="50" fill="#FFFFFF" stroke="#999999" stroke-width="2" rx="5" ry="5"/>
<!-- Arms raised holding flag -->
<line x1="220" y1="180" x2="250" y2="150" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round"/>
<line x1="220" y1="180" x2="180" y2="200" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round"/>
<!-- Legs -->
<line x1="215" y1="220" x2="205" y2="250" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"/>
<line x1="225" y1="220" x2="235" y2="250" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"/>
<!-- Flagpole -->
<line x1="250" y1="150" x2="250" y2="100" stroke="#8B4513" stroke-width="2"/>
<!-- Flag with pattern -->
<g transform="translate(250,100)">
<rect width="40" height="20" fill="#FFFFFF" stroke="#222" stroke-width="1"/>
<!-- Stripes pattern -->
<rect y="0" width="40" height="5" fill="#FF0000"/>
<rect y="5" width="40" height="5" fill="#FFFFFF"/>
<rect y="10" width="40" height="5" fill="#FF0000"/>
<rect y="15" width="40" height="5" fill="#FFFFFF"/>
<rect y="20" width="40" height="0"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is more creative and adheres better to the prompt by clearly depicting an astronaut planting a flag on a pizza slice in space.
The astronaut and the pizza are identifiable, and the composition has a playful and visually appealing design.
Player 1's submission is more abstract and less immediately recognizable as fulfilling 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
"Rocket-powered snail racing against a cheetah on a colorful desert track."
"A snail racing a rocket on a rainbow road."
"A giraffe riding a unicycle on a rainbow under a moonlit sky."
"An astronaut roasting marshmallows over a tiny campfire on the moon."