Creative Challenge
"Giraffe wearing space suit, floating among stars"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>
<defs>
<pattern id="stars" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="2" fill="#FFF"/>
</pattern>
</defs>
<!-- Giraffe Body -->
<g transform="translate(150 150)">
<path d="M-30-50 L-20-40 L-10-30 L0-20 L10-30 L20-40 L30-50" fill="#F7DC6F" stroke="#FFC107" stroke-width="2"/>
<path d="M-30-50 L-30-30 L-20-20 L-10-10 L0 0 L10 10 L20 20 L30 30 L30-50" fill="#F2C464" stroke="#FFC107" stroke-width="2"/>
<path d="M-20-40 L-10-30 L0-20 L10-30 L20-40" fill="#FFC107" stroke="#FFC107" stroke-width="2"/>
</g>
<!-- Space Suit -->
<g transform="translate(150 150)">
<path d="M-30-50 L-20-40 L-10-30 L0-20 L10-30 L20-40 L30-50" fill="url(#suitGradient)" stroke="#FFF" stroke-width="2"/>
<path d="M-30-30 L-20-20 L-10-10 L0 0 L10 10 L20 20 L30 30" fill="url(#suitGradient)" stroke="#FFF" stroke-width="2"/>
<circle cx="0" cy="-40" r="10" fill="#FFF" stroke="#FFF" stroke-width="2"/>
</g>
<defs>
<linearGradient id="suitGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#3498DB"/>
<stop offset="1" stop-color="#2980B9"/>
</linearGradient>
</defs>
<!-- Helmet -->
<g transform="translate(150 150)">
<circle cx="0" cy="-60" r="20" fill="#FFF" stroke="#FFF" stroke-width="2"/>
<circle cx="0" cy="-60" r="15" fill="url(#visorGradient)" stroke="#FFF" stroke-width="2"/>
<circle cx="0" cy="-60" r="10" fill="#3498DB" stroke="#FFF" stroke-width="2"/>
</g>
<defs>
<linearGradient id="visorGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#2980B9"/>
<stop offset="1" stop-color="#3498DB"/>
</linearGradient>
</defs>
<!-- Stars and Glows -->
<g transform="translate(150 150)">
<circle cx="0" cy="-70" r="5" fill="#FFF" stroke="#FFF" stroke-width="2"/>
<circle cx="0" cy="-70" r="10" fill="none" stroke="#FFF" stroke-width="2" stroke-dasharray="5 5"/>
<circle cx="0" cy="-70" r="15" fill="none" stroke="#FFF" stroke-width="1" stroke-dasharray="5 5"/>
</g>
<!-- Nebula -->
<g transform="translate(150 150)">
<circle cx="0" cy="-100" r="50" fill="url(#nebulaGradient)"/>
</g>
<defs>
<radialGradient id="nebulaGradient" cx="0" cy="0" r="50" fx="0" fy="0">
<stop offset="0" stop-color="#3498DB"/>
<stop offset="0.5" stop-color="#2980B9"/>
<stop offset="1" stop-color="#2E4053"/>
</radialGradient>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - Space with stars -->
<rect width="300" height="300" fill="#0f0a35" />
<circle cx="150" cy="150" r="2" fill="#fff" />
<circle cx="30" cy="80" r="1" fill="#fff" />
<circle cx="260" cy="200" r="2" fill="#fff" />
<circle cx="100" cy="250" r="1" fill="#fff" />
<circle cx="200" cy="50" r="1" fill="#fff" />
<!-- Giraffe body - Space suit -->
<rect x="120" y="100" width="60" height="120" fill="#4a4a4a" />
<circle cx="150" cy="100" r="30" fill="#4a4a4a" />
<!-- Giraffe head - Helmet -->
<circle cx="150" cy="70" r="40" fill="#b9d8ff" />
<path d="M115,95 Q150,110 185,95" fill="none" stroke="#fff" stroke-width="3" />
<!-- Giraffe neck -->
<rect x="145" y="120" width="10" height="60" fill="#4a4a4a" />
<!-- Giraffe spots - Buttons and details on the suit -->
<circle cx="130" cy="150" r="3" fill="#f82f4d" />
<circle cx="170" cy="150" r="3" fill="#f82f4d" />
<circle cx="150" cy="190" r="2" fill="#f82f4d" />
<circle cx="135" cy="225" r="1" fill="#f82f4d" />
<circle cx="165" cy="225" r="1" fill="#f82f4d" />
<!-- Giraffe legs - Floating stance -->
<rect x="130" y="220" width="10" height="30" fill="#4a4a4a" />
<rect x="160" y="220" width="10" height="30" fill="#4a4a4a" />
<!-- Giraffe tail - Cute and floating -->
<path d="M120,250 Q130,260 120,270 Q110,260 120,250" fill="#4a4a4a" />
</svg>
Judge's Analysis
Player 2's submission more effectively captures the idea of a giraffe in a space suit floating among stars.
The dark background with scattered stars enhances the space theme, and the overall composition is more visually appealing.
Player 1's submission, while creative, lacks the context of space and the presence of stars, making Player 2's more fitting to 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
"An octopus riding a unicycle on a rainbow"
"Glowing jellyfish in a sunset sky"
"Juggling octopus under starry sky"
"Socks hanging like holiday stockings on a giant cactus"
"Melting clock dripping over a sunflower"
"A mythical creature juggling planets under a neon night sky"