Creative Challenge
"Cat balancing on a ball under a spotlight at midnight."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Night sky gradient -->
<radialGradient id="skyGrad" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#0a0f2b"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<!-- Spotlight beam -->
<linearGradient id="beamGrad" x1="50%" y1="0%" x2="50%" y2="100%">
<stop offset="0%" stop-color="rgba(255,255,200,0.8)"/>
<stop offset="100%" stop-color="rgba(255,255,200,0)"/>
</linearGradient>
<!-- Ball gradient -->
<radialGradient id="ballGrad" cx="30%" cy="30%" r="70%">
<stop offset="0%" stop-color="#ff6f91"/>
<stop offset="50%" stop-color="#ff9671"/>
<stop offset="100%" stop-color="#ffc75f"/>
</radialGradient>
<!-- Ball stripe pattern -->
<pattern id="stripes" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(45)">
<rect width="5" height="10" fill="rgba(255,255,255,0.3)" />
</pattern>
<!-- Soft shadow filter -->
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
<feOffset in="blur" dx="0" dy="4" result="offsetBlur"/>
<feMerge>
<feMergeNode in="offsetBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGrad)" />
<!-- Moon -->
<circle cx="250" cy="50" r="30" fill="#f0f4c3" filter="url(#shadow)" />
<!-- Spotlight beam -->
<polygon points="150,0 100,300 200,300" fill="url(#beamGrad)" />
<!-- Ball with gradient and stripes -->
<g filter="url(#shadow)">
<circle cx="150" cy="240" r="40" fill="url(#ballGrad)" />
<circle cx="150" cy="240" r="40" fill="url(#stripes)" />
</g>
<!-- Cat silhouette -->
<g transform="translate(150,200) scale(0.7)" fill="#111">
<!-- Body -->
<path d="M0,0 c20,-30 60,-30 80,0 s-10,80 -40,80 s-60,-50 -40,-80" />
<!-- Head -->
<ellipse cx="60" cy="-10" rx="20" ry="18" />
<!-- Ears -->
<polygon points="50,-25 45,-40 60,-30" />
<polygon points="70,-25 75,-40 60,-30" />
<!-- Tail -->
<path d="M80,30 c30,10 40,50 10,60" stroke="#111" stroke-width="8" fill="none" />
<!-- Eyes glowing -->
<circle cx="55" cy="-12" r="3" fill="#ffea00" />
<circle cx="65" cy="-12" r="3" fill="#ffea00" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Spotlight -->
<radialGradient id="spotlight" 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>
<circle cx="150" cy="50" r="50" fill="url(#spotlight)" />
<!-- Midnight Sky -->
<linearGradient id="midnight" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#2c3e50" />
<stop offset="100%" stop-color="#1a1d23" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#midnight)" />
<!-- Ball -->
<radialGradient id="ball" 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>
<circle cx="150" cy="150" r="50" fill="url(#ball)" stroke="#ccc" stroke-width="2" />
<!-- Cat -->
<g transform="translate(150, 150)">
<path d="M-30 -20 L-20 0 L-30 20 L-40 0 Z" fill="#333" stroke="#666" stroke-width="2" />
<path d="M30 -20 L20 0 L30 20 L40 0 Z" fill="#333" stroke="#666" stroke-width="2" />
<circle cx="0" cy="0" r="20" fill="#333" stroke="#666" stroke-width="2" />
<path d="M0 -30 L-10 -20 L10 -20 Z" fill="#333" stroke="#666" stroke-width="2" />
<path d="M-10 10 L0 20 L10 10 Z" fill="#333" stroke="#666" stroke-width="2" />
</g>
<!-- Ball Shadow -->
<circle cx="150" cy="200" r="20" fill="#666" opacity="0.5" />
</svg>
Judge's Analysis
Player 1's image clearly depicts a cat balancing on a ball under a spotlight at midnight with a creative use of colors and composition.
The spotlight and moon enhance the midnight atmosphere, while the cat and ball are visually distinct.
Player 2's submission is abstract and lacks clarity in adhering to the prompt, making it less effective in conveying the intended idea.
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 cat juggling planets in space."
"A tree growing from a floating teacup in the sky."
"Two cats fencing with baguettes under a crescent moon."