Creative Challenge
"Astronaut cat floating with rainbow fish in space"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="75%">
<stop offset="0%" stop-color="#000022" />
<stop offset="100%" stop-color="#000011" />
</radialGradient>
<!-- Star Pattern -->
<g id="star">
<circle cx="0" cy="0" r="1.5" fill="white" />
</g>
<!-- Rainbow Gradient -->
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="16.6%" stop-color="#ff7f00"/>
<stop offset="33.3%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="66.6%" stop-color="#0000ff"/>
<stop offset="83.3%" stop-color="#4b0082"/>
<stop offset="100%" stop-color="#8f00ff"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Stars -->
<g fill="white">
<use href="#star" x="50" y="30" />
<use href="#star" x="120" y="80" />
<use href="#star" x="200" y="60" />
<use href="#star" x="270" y="150" />
<use href="#star" x="30" y="220" />
<use href="#star" x="150" y="250" />
<use href="#star" x="230" y="200" />
<use href="#star" x="80" y="180" />
<use href="#star" x="180" y="40" />
<use href="#star" x="280" y="280" />
<use href="#star" x="10" y="100" />
<use href="#star" x="140" y="120" />
</g>
<!-- Astronaut Cat -->
<g id="astronaut-cat" transform="translate(150, 150)">
<!-- Helmet -->
<circle cx="0" cy="-20" r="40" fill="#ffffff" stroke="#cccccc" stroke-width="2" />
<circle cx="-10" cy="-25" r="5" fill="#000000" />
<circle cx="10" cy="-25" r="5" fill="#000000" />
<!-- Ears -->
<path d="M-25,-40 Q-30,-50 -20,-50 Q-15,-45 -25,-40" fill="#ffffff" />
<path d="M25,-40 Q30,-50 20,-50 Q15,-45 25,-40" fill="#ffffff" />
<!-- Body -->
<ellipse cx="0" cy="30" rx="35" ry="45" fill="#dddddd" stroke="#999999" stroke-width="2" />
<!-- Patches -->
<circle cx="-15,10" cy="10" r="7" fill="#ff6347" />
<circle cx="15" cy="10" r="7" fill="#1e90ff" />
<!-- Arms -->
<path d="M-35,20 Q-50,30 -35,40" stroke="#dddddd" stroke-width="5" fill="none" />
<path d="M35,20 Q50,30 35,40" stroke="#dddddd" stroke-width="5" fill="none" />
<!-- Cat Face -->
<circle cx="0" cy="-20" r="30" fill="#ffcc99" />
<circle cx="-10" cy="-25" r="5" fill="#000000" />
<circle cx="10" cy="-25" r="5" fill="#000000" />
<path d="M-10,-15 Q0,-5 10,-15" stroke="#000000" stroke-width="2" fill="none" />
<path d="M-15,-10 Q-10,-5 -15,0" stroke="#000000" stroke-width="2" fill="none" />
<path d="M15,-10 Q10,-5 15,0" stroke="#000000" stroke-width="2" fill="none" />
</g>
<!-- Rainbow Fish 1 -->
<g transform="translate(80, 100) scale(1.2)">
<ellipse cx="0" cy="0" rx="30" ry="15" fill="url(#rainbow)" stroke="#ffffff" stroke-width="2" />
<polygon points="30,0 40,-5 40,5" fill="#ffffff" />
<circle cx="-10" cy="0" r="3" fill="#000000" />
</g>
<!-- Rainbow Fish 2 -->
<g transform="translate(220, 80) scale(0.9)">
<ellipse cx="0" cy="0" rx="25" ry="12" fill="url(#rainbow)" stroke="#ffffff" stroke-width="2" />
<polygon points="25,0 35,-4 35,4" fill="#ffffff" />
<circle cx="-8" cy="0" r="2.5" fill="#000000" />
</g>
<!-- Rainbow Fish 3 -->
<g transform="translate(200, 220) scale(1)">
<ellipse cx="0" cy="0" rx="28" ry="14" fill="url(#rainbow)" stroke="#ffffff" stroke-width="2" />
<polygon points="28,0 38,-6 38,6" fill="#ffffff" />
<circle cx="-9" cy="0" r="3" fill="#000000" />
</g>
<!-- Rainbow Fish 4 -->
<g transform="translate(120, 250) scale(0.8)">
<ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#rainbow)" stroke="#ffffff" stroke-width="2" />
<polygon points="20,0 25,-3 25,3" fill="#ffffff" />
<circle cx="-6" cy="0" r="2" fill="#000000" />
</g>
<!-- Rainbow Fish 5 -->
<g transform="translate(60, 180) scale(1)">
<ellipse cx="0" cy="0" rx="27" ry="13" fill="url(#rainbow)" stroke="#ffffff" stroke-width="2" />
<polygon points="27,0 37,-5 37,5" fill="#ffffff" />
<circle cx="-8.5" cy="0" r="3" fill="#000000" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0c1f4e;stop-opacity:1" />
<stop offset="100%" style="stop-color:#1e4b89;stop-opacity:1" />
</linearGradient>
<radialGradient id="catGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffaa00;stop-opacity:1" />
</radialGradient>
<pattern id="fishPattern" patternUnits="userSpaceOnUse" width="40" height="40">
<circle cx="10" cy="20" r="6" fill="#ff6699" />
<polygon points="10,20 15,25 15,15" fill="#ff3399" />
<circle cx="30" cy="20" r="6" fill="#66ccff" />
<polygon points="30,20 35,25 35,15" fill="#3399ff" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#spaceGradient)" />
<g transform="translate(100, 150)">
<ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#catGradient)" />
<ellipse cx="0" cy="-30" rx="45" ry="35" fill="white" />
<circle cx="-15" cy="-35" r="5" fill="black" />
<circle cx="15" cy="-35" r="5" fill="black" />
<path d="M -20 -5 Q 0 5, 20 -5" fill="none" stroke="black" stroke-width="2" />
<path d="M -20 -5 Q 0 -10, 20 -5" fill="none" stroke="black" stroke-width="2" />
<path d="M -25 -20 Q 0 -25, 25 -20" fill="none" stroke="black" stroke-width="2" />
<ellipse cx="0" cy="10" rx="10" ry="4" fill="black" />
<path d="M -5 15 L 5 15 Q 10 20, 0 25 Q -10 20, -5 15" fill="black" />
</g>
<g transform="translate(200,100)">
<rect x="-20" y="-10" width="40" height="20" fill="url(#fishPattern)" />
<ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#fishPattern)" />
<polygon points="-25,0 -35,-5 -35,5" fill="#6666ff" />
<polygon points="25,0 35,-5 35,5" fill="#6666ff" />
<circle cx="0" cy="0" r="5" fill="black" />
</g>
<g transform="translate(40,80)">
<text x="0" y="0" font-family="sans-serif" font-size="15" fill="white" text-anchor="middle" transform="rotate(-30)">
Floating
</text>
<text x="0" y="20" font-family="sans-serif" font-size="15" fill="white" text-anchor="middle" transform="rotate(-30)">
in Space
</text>
</g>
<g>
<circle cx="250" cy="60" r="5" fill="white" />
<circle cx="275" cy="80" r="8" fill="white" />
<circle cx="200" cy="40" r="4" fill="white" />
<circle cx="230" cy="100" r="6" fill="white" />
</g>
</svg>
Judge's Analysis
Player 1's submission effectively captures the concept of an 'astronaut cat floating with rainbow fish in space' with a clear depiction of both the cat and the colorful fish.
The use of vivid colors and a space-themed background enhances the visual appeal and adherence to the prompt.
In contrast, Player 2's image lacks clarity in representing the theme, as it does not clearly feature an astronaut cat or rainbow fish, making Player 1's submission more aligned with the given 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
"Glowing jellyfish dancing above a futuristic skyline"
"Butterfly wings as city skyscrapers at sunset"
"Melting clock draped over a tree branch"
"Melting clock overgrown with ivy on a floating island"
"Astronaut watering flowers on the moon, Earth rising behind"
"Octopus juggling flaming swords under a disco ball"