Creative Challenge
"Cat in a space suit juggling neon planets"
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="#0d0d0d"/>
<g stroke="#fff" stroke-width="2">
<!-- Cat -->
<path d="M140 220 c0 10 10 15 20 10 c10 -5 10 -20 0 -20 c-10 0 -20 15 -20 20 z" fill="#ebebeb"/>
<circle cx="150" cy="210" r="20" fill="#ebebeb"/>
<circle cx="170" cy="210" r="20" fill="#ebebeb"/>
<path d="M145 240 c0 10 10 15 20 10 c10 -5 10 -20 0 -20 c-10 0 -20 15 -20 20 z" fill="#ebebeb"/>
<rect x="130" y="220" width="40" height="30" rx="10" ry="10" fill="#ebebeb"/>
<rect x="120" y="250" width="60" height="30" rx="15" ry="15" fill="#ebebeb"/>
<!-- Space Suit -->
<rect x="120" y="200" width="60" height="100" rx="10" ry="10" fill="#3b3b3b" stroke="#fff"/>
<circle cx="150" cy="200" r="15" fill="#3b3b3b" stroke="#fff"/>
<circle cx="150" cy="215" r="15" fill="url(#grad1)" stroke="#fff"/>
<circle cx="150" cy="230" r="15" fill="url(#grad2)" stroke="#fff"/>
<!-- Juggling Planets -->
<circle cx="100" cy="150" r="20" fill="url(#grad1)" stroke="#fff"/>
<circle cx="200" cy="180" r="20" fill="url(#grad2)" stroke="#fff"/>
<circle cx="150" cy="250" r="20" fill="url(#grad1)" stroke="#fff"/>
<!-- Stars -->
<circle cx="50" cy="50" r="5" fill="#fff"/>
<circle cx="250" cy="50" r="5" fill="#fff"/>
<circle cx="50" cy="250" r="5" fill="#fff"/>
<circle cx="250" cy="250" r="5" fill="#fff"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with radial gradient -->
<defs>
<radialGradient id="spaceGrad" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" style="stop-color:#1a0f3c;stop-opacity:1"/>
<stop offset="1" style="stop-color:#0a0011;stop-opacity:1"/>
</radialGradient>
<!-- Glow effect for planets -->
<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(#spaceGrad)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="80" cy="120" r="1.5" fill="white"/>
<circle cx="200" cy="80" r="1" fill="white"/>
<circle cx="150" cy="200" r="1.2" fill="white"/>
<circle cx="250" cy="250" r="1" fill="white"/>
</g>
<!-- Planets with glow effect -->
<g id="planets">
<!-- Red Planet -->
<g transform="rotate(30 150 150)">
<circle cx="100" cy="100" r="20" fill="red" filter="url(#glow)"/>
<circle cx="100" cy="100" r="15" fill="url(https://www.w3schools.com/svg/gradient1.asp)"/>
</g>
<!-- Green Planet -->
<g transform="rotate(-45 150 150)">
<circle cx="200" cy="80" r="25" fill="green" filter="url(#glow)"/>
<circle cx="200" cy="80" r="20" fill="url(https://www.w3schools.com/svg/gradient2.asp)"/>
</g>
<!-- Blue Planet -->
<g transform="rotate(60 150 150)">
<circle cx="250" cy="200" r="30" fill="blue" filter="url(#glow)"/>
<circle cx="250" cy="200" r="25" fill="url(https://www.w3schools.com/svg/gradient3.asp)"/>
</g>
<!-- Yellow Planet -->
<g transform="rotate(-60 150 150)">
<circle cx="50" cy="200" r="20" fill="yellow" filter="url(#glow)"/>
<circle cx="50" cy="200" r="15" fill="url(https://www.w3schools.com/svg/gradient4.asp)"/>
</g>
</g>
<!-- Cat in space suit -->
<g id="cat" transform="translate(150 150)">
<!-- Space suit -->
<path d="M-40-40 L40-40 L0-80 Z" fill="#000"/>
<path d="M-40-40 L40-40 L40-80 L-40-80 Z" fill="#333"/>
<!-- Cat face -->
<circle cx="0" cy="-30" r="30" fill="#fff"/>
<circle cx="-15" cy="-20" r="10" fill="#000"/>
<circle cx="15" cy="-20" r="10" fill="#000"/>
<path d="M-20-40 L20-40 L0-60 Z" fill="#000"/>
</g>
<!-- Juggling motion lines -->
<path d="M150 100 Q200 50 250 100" stroke="#0ff" stroke-width="2" fill="none"/>
<path d="M150 100 Q200 150 250 200" stroke="#0ff" stroke-width="2" fill="none"/>
<path d="M150 100 Q100 150 50 100" stroke="#0ff" stroke-width="2" fill="none"/>
<path d="M150 100 Q100 50 50 100" stroke="#0ff" stroke-width="2" fill="none"/>
<!-- Cosmic rays -->
<path d="M0 0 Q150 100 300 300" stroke="#ff00ff" stroke-width="1" fill="none"/>
<path d="M300 0 Q150 100 0 300" stroke="#ff00ff" stroke-width="1" fill="none"/>
</svg>
Judge's Analysis
Player 2's submission captures the essence of the prompt with a more distinct depiction of a cat-like figure in a space helmet, juggling neon planets.
The use of colors and lines adds a dynamic and vibrant feel, enhancing visual appeal.
Player 1's image, while technically clean, lacks clear representation of the cat and space suit elements, making it less adherent to the theme.
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
"Levitation tea party with floating teacups and pastries"
"Moonlit snail in a top hat juggling stars"
"Rainbow octopus in a Victorian tea party setting"
"Dolphin playing chess with a robot atop an iceberg"
"Flamingo on a skateboard, wearing sunglasses and sipping a smoothie"
"Frog in a vintage scuba suit dancing with jellyfish"