Creative Challenge
"Cat in a spacesuit juggling glowing planets"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Definitions for gradients and patterns -->
<defs>
<!-- Background gradient -->
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#010101"/>
<stop offset="100%" stop-color="#030303"/>
</linearGradient>
<!-- Star pattern -->
<pattern id="stars" width="4" height="4" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="0.5" fill="white" />
</pattern>
<!-- Spacesuit gradient -->
<radialGradient id="suitGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#cccccc"/>
<stop offset="100%" stop-color="#888888"/>
</radialGradient>
<!-- Helmet gradient -->
<radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#dddddd" stop-opacity="0.2"/>
</radialGradient>
<!-- Planet gradients -->
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#d45087"/>
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#6b5b95"/>
<stop offset="100%" stop-color="#feb236"/>
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#8ac926"/>
<stop offset="100%" stop-color="#1982c4"/>
</radialGradient>
<!-- Glow filter -->
<filter id="glow" height="300%" width="300%" x="-50%" y="-50%">
<feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<rect width="300" height="300" fill="url(#stars)" opacity="0.3" />
<!-- Cat body -->
<g transform="translate(150, 180)">
<!-- Spacesuit -->
<ellipse cx="0" cy="0" rx="50" ry="70" fill="url(#suitGradient)" />
<!-- Helmet -->
<circle cx="0" cy="-40" r="30" fill="url(#helmetGradient)" stroke="white" stroke-width="2"/>
<!-- Cat face -->
<g transform="translate(0, -40)">
<!-- Eyes -->
<circle cx="-10" cy="-10" r="5" fill="black"/>
<circle cx="10" cy="-10" r="5" fill="black"/>
<!-- Nose -->
<polygon points="0,0 -5,5 5,5" fill="pink"/>
<!-- Whiskers -->
<line x1="-5" y1="5" x2="-15" y2="5" stroke="black" stroke-width="1"/>
<line x1="5" y1="5" x2="15" y2="5" stroke="black" stroke-width="1"/>
</g>
<!-- Ears -->
<polygon points="-35,-60 -25,-90 -15,-60" fill="url(#suitGradient)" />
<polygon points="35,-60 25,-90 15,-60" fill="url(#suitGradient)" />
<!-- Arms -->
<path d="M-50,0 C-70,-30 -70,30 -50,0" fill="url(#suitGradient)" />
<path d="M50,0 C70,-30 70,30 50,0" fill="url(#suitGradient)" />
</g>
<!-- Planets -->
<g filter="url(#glow)">
<!-- Planet 1 -->
<circle cx="80" cy="80" r="15" fill="url(#planet1)" />
<!-- Planet 2 -->
<circle cx="220" cy="60" r="20" fill="url(#planet2)" />
<!-- Planet 3 -->
<circle cx="150" cy="250" r="18" fill="url(#planet3)" />
<!-- Rings -->
<ellipse cx="220" cy="60" rx="25" ry="8" fill="none" stroke="#ffffffaa" stroke-width="2" transform="rotate(-30 220 60)" />
<ellipse cx="150" cy="250" rx="22" ry="6" fill="none" stroke="#ffffffaa" stroke-width="2" transform="rotate(20 150 250)" />
</g>
<!-- Juggling arcs -->
<path d="M150,180 C100,100 200,100 150,180" stroke="#ffffff66" stroke-width="2" fill="none" />
<path d="M150,180 C50,150 250,150 150,180" stroke="#ffffff66" stroke-width="2" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="magenta"/>
<stop offset="100%" stop-color="purple"/>
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="cyan"/>
<stop offset="100%" stop-color="blue"/>
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="orange"/>
<stop offset="100%" stop-color="red"/>
</radialGradient>
<pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="1" fill="white"/>
<circle cx="10" cy="8" r="0.5" fill="white"/>
<circle cx="18" cy="15" r="1.5" fill="white"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#stars)"/>
<circle cx="100" cy="100" r="30" fill="url(#planet1)"/>
<circle cx="150" cy="200" r="20" fill="url(#planet2)"/>
<circle cx="220" cy="130" r="25" fill="url(#planet3)"/>
<path d="M130 170 c0 -50 50 -70 70 -30 c20 40 -20 70 -70 30" stroke="white" stroke-width="2" fill="none"/>
<g transform="translate(150,150)">
<circle cx="0" cy="-50" r="40" fill="white"/>
<path d="M-20 -40 a20,20 0 0,1 40,0" fill="none" stroke="black" stroke-width="3"/>
<circle cx="-10" cy="-60" r="5" fill="black"/>
<circle cx="10" cy="-60" r="5" fill="black"/>
<path d="M-15 -40 a5,5 0 0,0 10,0 a5,5 0 0,0 -10,0" stroke="black" stroke-width="2" fill="pink"/>
<path d="M-20 -30 l20 10 l-10 20 z" fill="orange" stroke="black" stroke-width="2"/>
<path d="M20 -30 l-20 10 l10 20 z" fill="orange" stroke="black" stroke-width="2"/>
</g>
</svg>
Judge's Analysis
Player 1's image more clearly represents a cat in a spacesuit, with distinguishable ears and facial features, and the glowing planets are effectively depicted with rings, enhancing the space theme.
Player 2's image is less clear in portraying a cat or a spacesuit, and the visual elements appear more abstract, making it less adherent 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
"Astronaut playing chess with a cat on a moonlit crater"
"Cherry blossom tree growing on a floating iceberg"
"Bioluminescent mushroom cityscape at twilight"
"A penguin knight jousting on a seahorse against a walrus in armor"
"Midnight cityscape from a cat's rooftop perspective"
"Octopus tentacles forming Einstein's face"