Creative Challenge
"A giraffe in a spacesuit floating near Saturn's rings."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="300" height="300" fill="#000000"/>
<!-- Saturn's Rings -->
<ellipse cx="220" cy="240" rx="100" ry="40" fill="none" stroke="#FFD700" stroke-width="4"/>
<ellipse cx="220" cy="240" rx="90" ry="35" fill="none" stroke="#FFD700" stroke-width="2" opacity="0.7"/>
<circle cx="220" cy="240" r="50" fill="none" stroke="#888888" stroke-width="2"/>
<!-- Saturn -->
<circle cx="220" cy="240" r="50" fill="#FF8C00" stroke="#FF6B35" stroke-width="3">
<animate attributeName="r" from="50" to="52" dur="2s" repeatCount="indefinite" />
</circle>
<!-- Giraffe in Spacesuit -->
<g transform="translate(100,200)">
<!-- Spacesuit -->
<path d="M0,0 L30,0 Q45,0 45,15 L45,40 Q45,55 30,55 L15,55 Q5,55 0,50 L0,15 Q0,5 5,0 Z"
fill="#C0C0C0" stroke="#333" stroke-width="2"/>
<path d="M15,50 L15,55 L25,55 L25,50 Z" fill="#C0C0C0"/>
<path d="M20,35 Q25,32.5 25,30" stroke="#ffd700" stroke-width="2"/>
<!-- Giraffe Head -->
<path d="M-20,30 C-30,35 -20,40 -10,35 L0,30 L5,25 L10,30 C15,35 10,40 0,35 L-10,30 L-15,25 Z"
fill="#8B4513" stroke="#654321" stroke-width="2"/>
<!-- Giraffe Neck -->
<path d="M0,30 Q-10,25 -15,20" stroke="#654321" stroke-width="4"/>
<!-- Legs -->
<path d="M0,0 L10,0 L10,-20 L0,-20 Z" fill="#654321"/>
<path d="M5,-15 L15,-15 L15,-25 L5,-25 Z" fill="#654321"/>
<!-- Tail -->
<path d="M0,-10 Q5,-12 10,-10" stroke="#654321" stroke-width="2"/>
<circle cx="10" cy="-10" r="2" fill="#654321"/>
</g>
<!-- Stars -->
<g opacity="0.5">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="80" cy="60" r="1" fill="white"/>
<circle cx="110" cy="40" r="1" fill="white"/>
<circle cx="140" cy="50" r="1" fill="white"/>
<circle cx="170" cy="60" r="1" fill="white"/>
<circle cx="200" cy="40" r="1" fill="white"/>
</g>
<!-- Glow Effects -->
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<circle cx="220" cy="240" r="60" fill="#FFD700" opacity="0.2" filter="url(#glow)"/>
<circle cx="100" cy="200" r="20" fill="#C0C0C0" opacity="0.3" filter="url(#glow)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background: Starry space -->
<defs>
<radialGradient id="spaceGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#000011"/>
<stop offset="100%" stop-color="#000000"/>
</radialGradient>
<linearGradient id="ringGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#f0c420"/>
<stop offset="100%" stop-color="#b86d00"/>
</linearGradient>
<!-- Spacesuit gradient -->
<linearGradient id="suitGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#bbd4f1"/>
<stop offset="100%" stop-color="#4682b4"/>
</linearGradient>
<!-- Giraffe spots -->
<pattern id="spots" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#4b2e0f"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#spaceGrad)" />
<!-- Saturn with rings -->
<circle cx="200" cy="150" r="50" fill="#f5deb3" stroke="#d2b48c" stroke-width="4"/>
<!-- Rings -->
<ellipse cx="200" cy="150" rx="70" ry="15" fill="none" stroke="url(#ringGradient)" stroke-width="8" transform="rotate(20 200 150)"/>
<ellipse cx="200" cy="150" rx="80" ry="20" fill="none" stroke="url(#ringGradient)" stroke-width="4" opacity="0.6" transform="rotate(-25 200 150)"/>
<!-- Floating Giraffe in Spacesuit -->
<!-- Giraffe's Body -->
<g id="giraffe" transform="translate(100, 100)">
<!-- Neck -->
<rect x="40" y="10" width="10" height="60" fill="#f4d35e" stroke="#a67c00" stroke-width="2"/>
<!-- Head -->
<circle cx="45" cy="0" r="12" fill="#f4d35e" stroke="#a67c00" stroke-width="2"/>
<!-- Giraffe spots on head -->
<circle cx="45" cy="0" r="4" fill="#4b2e0f"/>
<!-- Eyes -->
<circle cx="42" cy="-3" r="1.5" fill="#000"/>
<circle cx="48" cy="-3" r="1.5" fill="#000"/>
<!-- Horns -->
<polygon points="43,0 45,4 47,0" fill="#a67c00"/>
<!-- Body -->
<rect x="35" y="70" width="20" height="60" rx="4" ry="4" fill="#f4d35e" stroke="#a67c00" stroke-width="2"/>
<!-- Spots on Body -->
<circle cx="40" cy="90" r="3" fill="url(#spots)"/>
<circle cx="50" cy="100" r="2" fill="url(#spots)"/>
<circle cx="37" cy="115" r="2" fill="url(#spots)"/>
<!-- Legs -->
<rect x="37" y="130" width="3" height="20" fill="#f4d35e"/>
<rect x="55" y="130" width="3" height="20" fill="#f4d35e"/>
<rect x="42" y="130" width="3" height="20" fill="#f4d35e"/>
<rect x="50" y="130" width="3" height="20" fill="#f4d35e"/>
<!-- Feet -->
<rect x="37" y="150" width="3" height="4" fill="#8b5a2b"/>
<rect x="55" y="150" width="3" height="4" fill="#8b5a2b"/>
<rect x="42" y="150" width="3" height="4" fill="#8b5a2b"/>
<rect x="50" y="150" width="3" height="4" fill="#8b5a2b"/>
<!-- Spacesuit Helmet -->
<circle cx="45" cy="0" r="14" fill="none" stroke="#ccc" stroke-width="2"/>
<!-- Helmet glass -->
<ellipse cx="45" cy="0" rx="12" ry="7" fill="rgba(135, 206, 235, 0.4)" stroke="#555" stroke-width="1"/>
<!-- Antenna -->
<line x1="45" y1="-12" x2="45" y2="-20" stroke="#555" stroke-width="1"/>
<circle cx="45" cy="-22" r="1.5" fill="#555"/>
<!-- Spacesuit suit body -->
<rect x="35" y="70" width="20" height="60" fill="url(#suitGradient)" rx="4" ry="4"/>
<!-- Connecting tubes or cables (metaphor) -->
<path d="M45 0 Q42 10 40 20" stroke="#999" stroke-width="1" fill="none"/>
</g>
<!-- Additional star elements for depth -->
<circle cx="20" cy="30" r="1.5" fill="#fff"/>
<circle cx="280" cy="80" r="1" fill="#fff"/>
<circle cx="250" cy="220" r="2" fill="#fff"/>
<circle cx="60" cy="250" r="1" fill="#fff"/>
<circle cx="150" cy="70" r="1" fill="#fff"/>
</svg>
Judge's Analysis
Player 2's submission more closely adheres to the prompt with a clear depiction of a giraffe in a spacesuit floating near Saturn's rings.
The design is more detailed, visually appealing, and shows greater creativity and technical execution compared to Player 1's simpler and less recognizable depiction of the concept.
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
"Octopus juggling planets under a starlit sky."
"A snail wearing a rocket-powered helmet racing against a tortoise with jet boots."
"A tree growing upside down, its roots reaching for the sky."
"A mouse riding a unicycle on a tightrope over a cup of steaming tea."