Creative Challenge
"Cat juggling planets in a starry galaxy"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Galaxy Background -->
<defs>
<radialGradient id="galaxyBg" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#0b0b2d" />
<stop offset="1" stop-color="#000000" />
</radialGradient>
<pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.5" />
<circle cx="20" cy="80" r="1" fill="white" opacity="0.5" />
<circle cx="80" cy="30" r="1" fill="white" opacity="0.5" />
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow" />
<feMerge>
<feMergeNode in="glow" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#galaxyBg)" />
<rect width="300" height="300" fill="url(#stars)" opacity="0.6" />
<!-- Cat -->
<g transform="translate(150,150)">
<path d="M 0 -50 C 50 -60, 100 -40, 120 -30, 130 -20, 140 0, 140 40, 130 50, 100 60, 80 50, 40 40, 20 20, 0 0 Z" fill="#f0d9b5" stroke="#a66c1b" stroke-width="2" />
<path d="M -40 0 L -60 -30 L -40 -60 L -20 -60 L 0 -30 L 20 -60 L 40 -60 L 60 -30 L 40 0 L 20 30 L 0 0" fill="#f0d9b5" stroke="#a66c1b" stroke-width="2" />
<ellipse cx="0" cy="-40" rx="15" ry="10" fill="#8b4513" />
<circle cx="-15" cy="-20" r="5" fill="#8b4513" />
<circle cx="15" cy="-20" r="5" fill="#8b4513" />
<path d="M 0 -60 L 10 -80 L -10 -80" fill="#8b4513" />
</g>
<!-- Planets -->
<g transform="rotate(90 150 150)">
<circle cx="150" cy="100" r="20" fill="#4b0082" filter="url(#glow)" />
<circle cx="100" cy="140" r="25" fill="#008000" filter="url(#glow)" />
<circle cx="200" cy="140" r="30" fill="#ffa500" filter="url(#glow)" />
</g>
<!-- Juggling Lines -->
<path d="M 150,150 C 150,130 140,110 130,100" stroke="#ffffff" stroke-width="2" />
<path d="M 150,150 C 150,130 160,110 170,100" stroke="#ffffff" stroke-width="2" />
<path d="M 150,150 C 150,130 150,110 150,100" stroke="#ffffff" stroke-width="2" />
<!-- Star Trails -->
<path d="M 100,100 Q 150,50 200,100" stroke="#ffffff" stroke-width="1" opacity="0.5" />
<path d="M 200,100 Q 250,150 200,200" stroke="#ffffff" stroke-width="1" opacity="0.5" />
<path d="M 100,200 Q 150,250 200,200" stroke="#ffffff" stroke-width="1" opacity="0.5" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxy" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#19072e"/>
<stop offset="100%" stop-color="#02002a"/>
</radialGradient>
<radialGradient id="planet1" cx="30%" cy="30%">
<stop offset="0%" stop-color="#ff6b6b"/>
<stop offset="100%" stop-color="#d74141"/>
</radialGradient>
<linearGradient id="planet2" gradientTransform="rotate(45)">
<stop offset="0%" stop-color="#7bed9f"/>
<stop offset="100%" stop-color="#2ed573"/>
</linearGradient>
<pattern id="crater" patternUnits="userSpaceOnUse" width="8" height="8">
<circle cx="4" cy="4" r="2" fill="#ffffff55"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#galaxy)"/>
<!-- Stars -->
<g opacity="0.8">
<circle cx="35" cy="80" r="1.2" fill="white"/>
<circle cx="250" cy="40" r="1.5" fill="#a2d5f7"/>
<circle cx="180" cy="150" r="1" fill="white"/>
<circle cx="90" cy="200" r="1.3" fill="#a2d5f7"/>
</g>
<!-- Juggling arc -->
<path d="M110 160 Q150 60 190 160" stroke="#ffffff44" fill="none" stroke-width="2"/>
<!-- Planets -->
<circle cx="110" cy="160" r="18" fill="url(#planet1)">
<animate attributeName="cy" values="160;140;160" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="140" r="22" fill="url(#planet2)">
<animate attributeName="cx" values="150;155;150" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="190" cy="160" r="20" fill="#ffd93d">
<animate attributeName="cy" values="160;150;160" dur="1.5s" repeatCount="indefinite"/>
</circle>
<!-- Cat body -->
<path d="M140 220 Q150 180 160 220 L150 270 Z" fill="#ffa94d"/>
<ellipse cx="150" cy="200" rx="40" ry="30" fill="#ffa94d"/>
<!-- Cat face -->
<circle cx="130" cy="190" r="8" fill="white"/>
<circle cx="170" cy="190" r="8" fill="white"/>
<circle cx="130" cy="190" r="3" fill="#2c3e50"/>
<circle cx="170" cy="190" r="3" fill="#2c3e50"/>
<path d="M140 210 Q150 215 160 210" stroke="#2c3e50" fill="none"/>
<!-- Whiskers -->
<g stroke="#ffffff" stroke-width="0.8">
<path d="M120 200 Q125 205 135 203"/>
<path d="M120 195 Q125 200 135 198"/>
<path d="M180 200 Q175 205 165 203"/>
<path d="M180 195 Q175 200 165 198"/>
</g>
<!-- Tail sparkles -->
<g transform="translate(165 250) rotate(30)" opacity="0.7">
<path d="M0 0 l5 5 m-5 0 l5 -5" stroke="#ffd93d"/>
<circle cx="7" cy="7" r="1.2" fill="#a2d5f7"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is more visually appealing and adheres to the prompt effectively.
The image clearly depicts a cat-like figure juggling planets within a starry galaxy, creating a whimsical and cohesive scene.
In contrast, Player 1's image is more abstract and less recognizable as a cat juggling planets, making it less effective in conveying the intended concept.
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
"Moonlit garden with glowing crystal flowers"
"Tornado made of musical notes sweeping through a desert"
"Lemon playing chess with an octopus on a floating iceberg"
"A cosmic whale breaching through a starry sky, its tail made of galaxies"
"A neon chameleon camouflaged on a circuit board"
"Dancing penguins in disco outfits under a swirling galaxy sky"