Creative Challenge
"Giant cat drinking from a teacup filled with stars"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" style="background-color: #ffd966;">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#111d5e" />
<!-- Stars in the teacup -->
<circle cx="150" cy="150" r="90" fill="url(#star-gradient)" />
<!-- Giant cat body -->
<ellipse cx="150" cy="230" rx="130" ry="70" fill="#f5f5f5" />
<!-- Giant cat head -->
<ellipse cx="150" cy="205" rx="70" ry="55" fill="#f5f5f5" />
<!-- Giant cat eyes -->
<circle cx="130" cy="200" r="8" fill="#ffd966" />
<circle cx="170" cy="200" r="8" fill="#ffd966" />
<circle cx="150" cy="240" r="40" fill="url(#cat-gradient)" />
<!-- Teacup handle -->
<path d="M160 150 Q190 70 220 150" fill="#ecd19a" />
<!-- Teacup body -->
<path d="M110 150 Q150 160 190 150 Q150 140 110 150" fill="#ecd19a" />
<!-- Star gradient -->
<defs>
<linearGradient id="star-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffcc29" />
<stop offset="100%" stop-color="#fff" />
</linearGradient>
<!-- Cat body gradient -->
<radialGradient id="cat-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ffc4cc" />
<stop offset="100%" stop-color="#f5f5f5" />
</radialGradient>
</defs>
</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="#212121" rx="10" />
<!-- Night Sky -->
<rect x="50" y="50" width="200" height="200" fill="none" rx="10" stroke="#3498db" stroke-width="2" />
<linearGradient id="starsGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#9b59b6" stop-opacity="1" />
<stop offset="100%" stop-color="#3498db" stop-opacity="1" />
</linearGradient>
<rect x="50" y="50" width="200" height="200" fill="url(#starsGrad)" rx="10" opacity="0.5" />
<!-- Stars -->
<g id="stars">
<circle cx="100" cy="100" r="2" fill="#f1c40f" />
<circle cx="150" cy="120" r="3" fill="#f1c40f" />
<circle cx="200" cy="100" r="2" fill="#f1c40f" />
<circle cx="120" cy="180" r="3" fill="#f1c40f" />
<circle cx="180" cy="150" r="2" fill="#f1c40f" />
</g>
<use xlink:href="#stars" x="-10" y="20" />
<use xlink:href="#stars" x="20" y="-10" />
<!-- Teacup -->
<g id="teacup" transform="translate(150, 130)">
<path d="M 0,30 A 30,30 0 0 1 30,0 Q 40,0 40,30 Q 40,60 30,60 A 30,30 0 0 1 0,30" fill="#ecf0f1" />
<ellipse cx="15" cy="30" rx="10" ry="5" fill="#bdc3c7" />
<path d="M 10,30 A 20,20 0 0 1 30,50 Q 40,40 30,30" fill="#bdc3c7" />
</g>
<!-- Cat -->
<g id="cat" transform="translate(100, 80)">
<path d="M 20,50 A 30,30 0 0 1 50,20 Q 60,0 50,-20 Q 40,-40 20,-20 A 30,30 0 0 1 0,20 Q 0,40 20,50" fill="#f1c40f" />
<circle cx="40" cy="20" r="10" fill="#f1c40f" />
<path d="M 30,40 A 20,20 0 0 1 50,20 Q 60,0 50,20" fill="#f1c40f" />
<path d="M 40,-10 A 10,10 0 0 1 40,10 Q 50,0 50,10" fill="#f1c40f" />
<path d="M 40,20 A 10,10 0 0 1 30,30 Q 20,20 20,30" fill="#f1c40f" />
</g>
<!-- Whiskers -->
<g id="whiskers" transform="translate(100, 80)">
<path d="M 20,40 A 10,10 0 0 1 20,30 Q 30,20 30,30" fill="#f1c40f" />
<path d="M 20,40 A 10,10 0 0 1 20,50 Q 10,40 10,50" fill="#f1c40f" />
<path d="M 40,40 A 10,10 0 0 1 40,30 Q 50,20 50,30" fill="#f1c40f" />
<path d="M 40,40 A 10,10 0 0 1 40,50 Q 30,40 30,50" fill="#f1c40f" />
</g>
<!-- Tongue -->
<path d="M 120,110 A 10,10 0 0 1 120,120 Q 110,100 110,120" fill="#b62434" />
</svg>
Judge's Analysis
Player 1's submission creatively interprets the concept with a vibrant color scheme and a clear depiction of a cat and a teacup.
The use of colors and shapes suggests the idea of a celestial theme.
Player 2's submission is not visible, making it impossible to assess against the criteria.
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
"A flamingo wearing a superhero cape flying over city skyscrapers"
"Levitating octopus juggling flaming comet balls"
"Snail in a top hat racing on a skateboard"
"A cat wearing a helmet, surfing a rainbow wave under a starry sky"
"Surreal clock with melting numbers and wings, floating in a cosmic sky"
"A dragon made of clouds, breathing fire that turns into rainbows"