Creative Challenge
"Alien cat juggling planets under a starry sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background Gradient -->
<radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0b3d91" />
<stop offset="100%" stop-color="#000000" />
</radialGradient>
<!-- Star Pattern -->
<symbol id="star">
<circle cx="0" cy="0" r="1.5" fill="white" />
</symbol>
<!-- Planet Gradients -->
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff7f50" />
<stop offset="100%" stop-color="#ff4500" />
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1e90ff" />
<stop offset="100%" stop-color="#00bfff" />
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#32cd32" />
<stop offset="100%" stop-color="#228b22" />
</radialGradient>
<!-- Cat Gradient -->
<radialGradient id="catGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#9acd32" />
<stop offset="100%" stop-color="#556b2f" />
</radialGradient>
<!-- Shadow Filter -->
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="rgba(0,0,0,0.5)" />
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Stars -->
<g>
<use href="#star" x="50" y="50" />
<use href="#star" x="120" y="80" />
<use href="#star" x="200" y="40" />
<use href="#star" x="280" y="70" />
<use href="#star" x="30" y="150" />
<use href="#star" x="250" y="200" />
<use href="#star" x="180" y="250" />
<use href="#star" x="100" y="220" />
<use href="#star" x="60" y="180" />
<use href="#star" x="220" y="120" />
</g>
<!-- Alien Cat Body -->
<g filter="url(#shadow)">
<ellipse cx="150" cy="220" rx="40" ry="20" fill="url(#catGradient)" />
<!-- Head -->
<circle cx="150" cy="180" r="30" fill="url(#catGradient)" />
<!-- Eyes -->
<circle cx="140" cy="175" r="5" fill="#ffffff" />
<circle cx="160" cy="175" r="5" fill="#ffffff" />
<!-- Pupils -->
<circle cx="140" cy="175" r="2" fill="#000000" />
<circle cx="160" cy="175" r="2" fill="#000000" />
<!-- Antennae -->
<line x1="135" y1="160" x2="130" y2="140" stroke="#9acd32" stroke-width="2" />
<circle cx="130" cy="140" r="3" fill="#ff69b4" />
<line x1="165" y1="160" x2="170" y2="140" stroke="#9acd32" stroke-width="2" />
<circle cx="170" cy="140" r="3" fill="#ff69b4" />
<!-- Whiskers -->
<path d="M140,185 H130 M140,190 H130 M140,195 H130" stroke="#ffffff" stroke-width="1" />
<path d="M160,185 H170 M160,190 H170 M160,195 H170" stroke="#ffffff" stroke-width="1" />
</g>
<!-- Juggling Planets -->
<!-- Planet 1 -->
<g>
<circle cx="100" cy="120" r="15" fill="url(#planet1)" />
<ellipse cx="100" cy="120" rx="20" ry="8" fill="none" stroke="#ff6347" stroke-width="2" />
</g>
<!-- Planet 2 -->
<g>
<circle cx="200" cy="100" r="12" fill="url(#planet2)" />
<ellipse cx="200" cy="100" rx="15" ry="5" fill="none" stroke="#00ced1" stroke-width="2" />
</g>
<!-- Planet 3 -->
<g>
<circle cx="150" cy="60" r="10" fill="url(#planet3)" />
<ellipse cx="150" cy="60" rx="14" ry="4" fill="none" stroke="#32cd32" stroke-width="2" />
</g>
<!-- Connecting Lines -->
<path d="M150,180 C90,120 210,120 150,60" stroke="#ffffff" stroke-dasharray="4,2" fill="none" />
<path d="M150,180 C110,130 190,130 150,80" stroke="#ffffff" stroke-dasharray="4,2" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="bg" cx="150" cy="150" r="150">
<stop offset="0%" stop-color="#000"/>
<stop offset="100%" stop-color="#330066"/>
</radialGradient>
<rect width="300" height="300" fill="url(#bg)"/>
<g fill="#FFF" filter="url(#glow)">
<circle cx="50" cy="50" r="3"/>
<circle cx="100" cy="20" r="2"/>
<circle cx="180" cy="80" r="4"/>
<circle cx="220" cy="10" r="1"/>
<circle cx="280" cy="60" r="2.5"/>
<circle cx="250" cy="200" r="1.5"/>
<circle cx="50" cy="150" r="2"/>
<circle cx="120" cy="280" r="3"/>
<circle cx="200" cy="250" r="0.5"/>
<circle cx="280" cy="180" r="2"/>
</g>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<g transform="translate(150, 200)">
<path d="M-30,-30 C -10,-50 10,-50 30,-30 A 40 40 0 0 1 30,30 C 10,50 -10,50 -30,30 A 40 40 0 0 1 -30,-30 Z" fill="#8000FF" stroke="#AA00FF" stroke-width="3"/>
<circle cx="-15" cy="-5" r="5" fill="yellow"/>
<circle cx="15" cy="-5" r="5" fill="yellow"/>
<path d="M-10,5 L 0,15 L 10,5 Z" fill="pink"/>
</g>
<g>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="red"/>
<stop offset="50%" stop-color="orange"/>
<stop offset="100%" stop-color="yellow"/>
</radialGradient>
<circle cx="50" cy="180" r="20" fill="url(#planet1)"/>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="cyan"/>
<stop offset="50%" stop-color="blue"/>
<stop offset="100%" stop-color="darkblue"/>
</radialGradient>
<circle cx="100" cy="150" r="15" fill="url(#planet2)"/>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="lightgreen"/>
<stop offset="50%" stop-color="green"/>
<stop offset="100%" stop-color="darkgreen"/>
</radialGradient>
<ellipse cx="180" cy="170" rx="25" ry="15" fill="url(#planet3)" transform="rotate(20 180 170)"/>
</g>
</svg>
Judge's Analysis
Player 1's submission creatively depicts an alien cat with antennae juggling planets, capturing the whimsical nature of the prompt.
The use of distinct planetary colors and a starry background adds to the visual appeal and clarity.
Player 2's image lacks clear representation of a cat and juggling action, making it less aligned with 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"
"Cat in a spacesuit juggling glowing planets"