Creative Challenge
"A cat in a spacesuit juggling planets in zero gravity"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#002244"/>
<!-- Planets -->
<circle cx="30" cy="30" r="15" fill="#ffcc00"/>
<circle cx="100" cy="50" r="25" fill="#ff9900"/>
<circle cx="200" cy="20" r="20" fill="#ff6699"/>
<!-- Cat -->
<g transform="translate(150,150)">
<!-- Spacesuit -->
<ellipse cx="0" cy="0" rx="50" ry="80" fill="#222222"/>
<!-- Helmet -->
<circle cx="0" cy="-70" r="25" fill="#333"/>
<!-- Cat's Head -->
<circle cx="0" cy="-85" r="18" fill="#ffcc66"/>
<!-- Ears -->
<polygon points="-10,-100 0,-130 10,-100" fill="#ffcc66"/>
<!-- Eyes -->
<circle cx="-8" cy="-90" r="3" fill="white"/>
<circle cx="8" cy="-90" r="3" fill="white"/>
<!-- Nose -->
<circle cx="0" cy="-85" r="2" fill="#333"/>
<!-- Mouth -->
<path d="M -5,-80 Q 0,-70 5,-80" fill="none" stroke="#333" stroke-width="1"/>
</g>
<!-- Juggling -->
<circle cx="170" cy="240" r="15" fill="#ffcc00"/>
<circle cx="200" cy="260" r="18" fill="#ff6699"/>
<circle cx="230" cy="250" r="20" fill="#ff9900"/>
<circle cx="200" cy="220" r="10" fill="#ffcc00"/>
<!-- Tail -->
<path d="M 150,150 Q 130,200 100,250" fill="none" stroke="#ffcc66" stroke-width="8"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="300" height="300" fill="url(#space)" />
<!-- Space background with stars -->
<defs>
<linearGradient id="space" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" style="stop-color:#1A0F3B;stop-opacity:1" />
<stop offset="1" style="stop-color:#000000;stop-opacity:1" />
</linearGradient>
<!-- Starry texture -->
<filter id="stars">
<feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="3" />
</filter>
</defs>
<!-- Juggling planets -->
<g transform="translate(150,150)">
<!-- Planet 1 - Earth-like -->
<g transform="rotate(-60)">
<circle cx="-100" cy="-50" r="30" fill="#3E8E41" stroke="#2D6A33" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="-60" to="-60" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="-100" cy="-50" r="25" fill="url(earth-gradient)" />
</g>
<!-- Planet 2 - Gas giant -->
<g transform="rotate(60)">
<circle cx="100" cy="-50" r="35" fill="#FF6B6B" stroke="#FF5252" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="60" to="-300" dur="5s" repeatCount="indefinite" />
</circle>
<circle cx="100" cy="-50" r="30" fill="url(gas-gradient)" />
</g>
<!-- Planet 3 - Ice planet -->
<g transform="rotate(180)">
<circle cx="0" cy="100" r="25" fill="#A1C4FD" stroke="#80B1D1" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="180" to="180" dur="3s" repeatCount="indefinite" />
</circle>
<circle cx="0" cy="100" r="20" fill="url(ice-gradient)" />
</g>
<!-- Space cat -->
<g transform="translate(0,0)">
<!-- Spacesuit -->
<path d="M-50-100 L50-100 L40-60 L-40-60 L-50-100 Z" fill="#444" stroke="#666" stroke-width="2"/>
<path d="M-30-80 L30-80 L25-50 L-25-50 L-30-80 Z" fill="#444" stroke="#666" stroke-width="2"/>
<circle cx="0" cy="-70" r="15" fill="#FFD700" stroke="#FFB300" stroke-width="2"/>
<!-- Cat face -->
<circle cx="0" cy="-70" r="10" fill="#FFF" stroke="#666" stroke-width="1"/>
<path d="M-5-65 L5-65 L3-60 L-3-60 Z" fill="#000"/>
<path d="M-8-60 L8-60 L6-55 L-6-55 Z" fill="#000"/>
<path d="M-4-58 L4-58 L0-55" stroke="#000" stroke-width="1"/>
<!-- Whiskers -->
<path d="M-15-70 L-25-65" stroke="#FFF" stroke-width="1"/>
<path d="M15-70 L25-65" stroke="#FFF" stroke-width="1"/>
</g>
<!-- Orbital paths -->
<path d="M0-150 C100-50 200-50 300-150" fill="none" stroke="#666" stroke-width="1" opacity="0.3"/>
<path d="M0-150 C-100-50 -200-50 -300-150" fill="none" stroke="#666" stroke-width="1" opacity="0.3"/>
<!-- Gradient definitions -->
<defs>
<radialGradient id="earth-gradient" cx="0" cy="0" r="1" fx="0" fy="0">
<stop offset="0" style="stop-color:#3E8E41;stop-opacity:1" />
<stop offset="1" style="stop-color:#2D6A33;stop-opacity:1" />
</radialGradient>
<radialGradient id="gas-gradient" cx="0" cy="0" r="1" fx="0" fy="0">
<stop offset="0" style="stop-color:#FF6B6B;stop-opacity:1" />
<stop offset="1" style="stop-color:#FF5252;stop-opacity:1" />
</radialGradient>
<radialGradient id="ice-gradient" cx="0" cy="0" r="1" fx="0" fy="0">
<stop offset="0" style="stop-color:#A1C4FD;stop-opacity:1" />
<stop offset="1" style="stop-color:#80B1D1;stop-opacity:1" />
</radialGradient>
</defs>
</g>
</svg>
Judge's Analysis
Player 1's submission more clearly represents the prompt with a discernible figure resembling a cat in a spacesuit and the depiction of juggling planets.
The use of color and composition effectively communicates the theme of zero gravity.
Player 2's image, while creative, lacks clear elements that adhere to the prompt and doesn't visually convey the concept as effectively.
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
"Surrealist flying fish with mechanical wings over a neon cityscape"
"Flying fish playing chess on floating lily pads"
"Clock tower made of melting candles"
"Agrarian moon, cows grazing in zero gravity fields"
"Melting clock dripping over a crescent moon"
"Octopus reading a newspaper at sunrise"