Creative Challenge
"Cat astronaut juggling planets in zero gravity"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#001f4d;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#005f99;stop-opacity:1"/>
</linearGradient>
<radialGradient id="catBodyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#ffd700;stop-opacity:1"/>
</radialGradient>
<radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ff7f50;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#ff4500;stop-opacity:1"/>
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#1e90ff;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#00bfff;stop-opacity:1"/>
</radialGradient>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:white;stop-opacity:0"/>
<stop offset="100%" style="stop-color:white;stop-opacity:0.2"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#bgGradient)"/>
<g transform="translate(150,150)">
<!-- Cat Face -->
<ellipse cx="0" cy="0" rx="35" ry="25" fill="url(#catBodyGradient)" />
<circle cx="-15" cy="-5" r="5" fill="white"/>
<circle cx="15" cy="-5" r="5" fill="white"/>
<circle cx="-15" cy="-5" r="2" fill="black"/>
<circle cx="15" cy="-5" r="2" fill="black"/>
<path d="M-10 10 Q0 20 10 10" stroke="black" stroke-width="2" fill="none"/>
<polygon points="-8,12 -4,20 4,20 8,12" fill="white" />
<!-- Juggling Planets -->
<circle cx="60" cy="-50" r="15" fill="url(#planetGradient1)"/>
<circle cx="-70" cy="-60" r="20" fill="url(#planetGradient2)"/>
<circle cx="30" cy="20" r="10" fill="url(#planetGradient1)"/>
<!-- Stars -->
<circle cx="100" cy="-80" r="2" fill="white"/>
<circle cx="-100" cy="-20" r="2" fill="white"/>
<circle cx="80" cy="100" r="2" fill="white"/>
<circle cx="-60" cy="70" r="2" fill="white"/>
<!-- Space Effect -->
<rect x="-150" y="-150" width="300" height="300" fill="url(#spaceGradient)" opacity="0.5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#fff" stop-opacity="1" />
<stop offset="100%" stop-color="#fff" stop-opacity="0" />
</radialGradient>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#2c3e50" />
<stop offset="100%" stop-color="#3498db" />
</linearGradient>
<linearGradient id="planetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8e44ad" />
<stop offset="100%" stop-color="#2ecc71" />
</linearGradient>
</defs>
<!-- Background Space -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
<!-- Stars -->
<g>
<circle cx="50" cy="50" r="2" fill="url(#starGlow)" />
<circle cx="150" cy="100" r="3" fill="url(#starGlow)" />
<circle cx="250" cy="200" r="1" fill="url(#starGlow)" />
<circle cx="100" cy="250" r="2" fill="url(#starGlow)" />
</g>
<!-- Planets -->
<g>
<circle cx="70" cy="120" r="20" fill="url(#planetGradient)" />
<circle cx="180" cy="80" r="25" fill="url(#planetGradient)" />
<circle cx="220" cy="180" r="30" fill="url(#planetGradient)" />
</g>
<!-- Cat Astronaut -->
<g transform="translate(120, 150)">
<path d="M-50,-30 C-50,-50 50,-50 50,-30 L0,30 Z" fill="#f1c40f" />
<circle cx="0" cy="-30" r="20" fill="#e67e73" />
<path d="M-20,-20 C-20,-10 20,-10 20,-20 Z" fill="#e67e73" />
<circle cx="-10" cy="10" r="5" fill="#fff" />
<circle cx="10" cy="10" r="5" fill="#fff" />
<path d="M-10,20 C-10,10 10,10 10,20 Z" fill="#f1c40f" />
</g>
<!-- Juggling Planets -->
<g>
<path d="M120,150 C120,120 180,120 180,150" stroke="#fff" stroke-width="2" fill="none" />
<path d="M180,150 C180,180 220,180 220,150" stroke="#fff" stroke-width="2" fill="none" />
<path d="M220,150 C220,120 120,120 120,150" stroke="#fff" stroke-width="2" fill="none" />
</g>
</svg>
Judge's Analysis
Player 2's image more closely adheres to the prompt with a clearer representation of a cat astronaut and planets.
The composition is more visually appealing and technically refined, with a balanced color scheme and better depiction of zero gravity.
Player 1's image is less clear in depicting the theme of a cat astronaut juggling planets.
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 DJing at an underwater rave, with starfish dancers"
"Skateboarding octopus, undersea rink, wearing sunglasses"
"A floating island with a twisted tree and a single hanging lantern"
"A clock melting in a desert under a double rainbow"
"Treasure map showing an alien planet with psychedelic flora"
"Rainbow-colored octopus juggling teacups in a starry sea"