Creative Challenge
"Giraffe in a spacesuit, floating in zero gravity, reaching out for a bright red apple"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with stars -->
<defs>
<radialGradient id="gradSpace" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#000428; stop-opacity:1" />
<stop offset="100%" style="stop-color:#004e92; stop-opacity:1" />
</radialGradient>
<pattern id="starPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="0.5" fill="white" />
<circle cx="7" cy="7" r="0.5" fill="white" />
</pattern>
<linearGradient id="suitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#e0e0e0; stop-opacity:1" />
<stop offset="100%" style="stop-color:#a0a0a0; stop-opacity:1" />
</linearGradient>
<radialGradient id="appleGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ff4d4d; stop-opacity:1" />
<stop offset="100%" style="stop-color:#b30000; stop-opacity:1" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#gradSpace)" />
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.1" />
<!-- Giraffe Body -->
<g transform="translate(150, 200)">
<!-- Neck -->
<rect x="-10" y="-120" width="20" height="120" fill="#f3c06b" />
<!-- Spacesuit Neck Blanket -->
<rect x="-20" y="-120" width="40" height="20" fill="url(#suitGradient)" />
<!-- Body -->
<ellipse cx="0" cy="-100" rx="30" ry="40" fill="url(#suitGradient)" stroke="#555" stroke-width="2"/>
<!-- Arms -->
<path d="M-30,-100 Q-60,-80 -50,-60" stroke="url(#suitGradient)" stroke-width="5" fill="none" />
<path d="M30,-100 Q60,-80 50,-60" stroke="url(#suitGradient)" stroke-width="5" fill="none" />
<!-- Gloves -->
<circle cx="-50" cy="-60" r="5" fill="#f3c06b" />
<circle cx="50" cy="-60" r="5" fill="#f3c06b" />
<!-- Legs -->
<rect x="-15" y="-60" width="10" height="40" fill="#f3c06b" />
<rect x="5" y="-60" width="10" height="40" fill="#f3c06b" />
<!-- Spacesuit Limbs -->
<rect x="-15" y="-60" width="10" height="40" fill="url(#suitGradient)" />
<rect x="5" y="-60" width="10" height="40" fill="url(#suitGradient)" />
<!-- Helmet -->
<circle cx="0" cy="-120" r="25" fill="rgba(255,255,255,0.3)" stroke="#ccc" stroke-width="2"/>
<path d="M-15,-125 Q0,-150 15,-125" fill="none" stroke="#ccc" stroke-width="2"/>
<!-- Head -->
<circle cx="0" cy="-120" r="10" fill="#f3c06b" />
<!-- Eyes -->
<circle cx="-3" cy="-122" r="2" fill="#000" />
<circle cx="3" cy="-122" r="2" fill="#000" />
</g>
<!-- Apple -->
<g transform="translate(220,80)">
<circle cx="0" cy="0" r="15" fill="url(#appleGradient)" stroke="#a00" stroke-width="2"/>
<path d="M-5,-15 Q0,-20 5,-15" stroke="#4d2600" stroke-width="2" fill="none"/>
<circle cx="-4,-16" r="1.5" fill="white" opacity="0.6"/>
</g>
<!-- Connecting Arm -->
<path d="M120,80 C160,100 180, -50 150, -100" stroke="url(#suitGradient)" stroke-width="5" fill="none" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#0A2463" />
<!-- Stars -->
<circle cx="30" cy="50" r="1" fill="#FFF" />
<circle cx="80" cy="90" r="1" fill="#FFF" />
<circle cx="200" cy="40" r="1" fill="#FFF" />
<circle cx="250" cy="120" r="1" fill="#FFF" />
<circle cx="150" cy="180" r="1" fill="#FFF" />
<circle cx="210" cy="230" r="1" fill="#FFF" />
<!-- Planet -->
<circle cx="150" cy="150" r="60" fill="#44318D" />
<circle cx="170" cy="170" r="10" fill="#9464AC" />
<!-- Giraffe Body -->
<circle cx="120" cy="90" r="35" fill="#FFA07A" />
<!-- Giraffe Neck -->
<rect x="115" y="50" width="10" height="70" fill="#FFA07A" />
<!-- Giraffe Head -->
<ellipse cx="120" cy="35" rx="18" ry="25" fill="#FFA07A" />
<ellipse cx="112" cy="32" rx="5" ry="8" fill="#FFF" />
<!-- Helmet -->
<circle cx="120" cy="35" r="20" fill="#C0C0C0" />
<!-- Visor -->
<circle cx="118" cy="33" r="15" fill="#000" />
<!-- Reflection on Visor -->
<circle cx="123" cy="28" r="4" fill="#FFF" />
<!-- Apple -->
<circle cx="180" cy="230" r="10" fill="#D62828" />
<!-- Apple Stem -->
<rect x="177" y="228" width="2" height="8" fill="#764248" />
</svg>
Judge's Analysis
Player 1's submission clearly depicts the giraffe in a spacesuit with distinct arms and legs reaching out towards a bright red apple, adhering closely to the prompt.
The use of color and the recognizable shape of the apple enhance the visual appeal and clarity.
Player 2's submission is more abstract and lacks clear elements tied to the concept of a giraffe or spacesuit, making it less effective in meeting 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 juggling colorful, oversized dice under a disco ball"
"Dancing octopus wearing a top hat and monocle under a disco ball"
"Mystical mime juggling glowing, translucent jellyfish in neon moonlight"
"Clocktower sprouting giant sunflowers, clock hands as petals"
"A cloud wearing sunglasses and a fedora sipping lemonade"
"A giraffe wearing 3D glasses watching a movie on a spaceship"