Creative Challenge
"A cat in a space helmet, floating among colorful nebulae"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="nebulaGradient1" cx="50%" cy="50%" r="80%">
<stop offset="0%" stop-color="#ff7f50" />
<stop offset="70%" stop-color="#ff6347" />
<stop offset="100%" stop-color="#ff4500" />
</radialGradient>
<radialGradient id="nebulaGradient2" cx="30%" cy="30%" r="70%">
<stop offset="0%" stop-color="#1e90ff" />
<stop offset="50%" stop-color="#00bfff" />
<stop offset="100%" stop-color="#87cefa" />
</radialGradient>
<radialGradient id="helmetGradient" cx="50%" cy="50%" r="80%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.7"/>
<stop offset="100%" stop-color="#b0c4de" stop-opacity="0.2"/>
</radialGradient>
<clipPath id="helmetClip">
<circle cx="150" cy="150" r="60"/>
</clipPath>
</defs>
<!-- Background nebulas -->
<circle cx="100" cy="100" r="90" fill="url(#nebulaGradient1)" />
<circle cx="220" cy="180" r="70" fill="url(#nebulaGradient2)" />
<!-- Cat face -->
<g clip-path="url(#helmetClip)">
<circle cx="150" cy="150" r="50" fill="#deb887" />
<ellipse cx="140" cy="145" rx="10" ry="12" fill="#ffffff" />
<ellipse cx="160" cy="145" rx="10" ry="12" fill="#ffffff" />
<circle cx="140" cy="145" r="5" fill="#000000" />
<circle cx="160" cy="145" r="5" fill="#000000" />
<path d="M150 160 Q145 170 140 160" stroke="#000000" stroke-width="2" fill="none" />
<path d="M150 160 Q155 170 160 160" stroke="#000000" stroke-width="2" fill="none" />
<path d="M148 170 Q150 180 152 170" fill="none" stroke="#000000" stroke-width="2"/>
</g>
<!-- Helmet -->
<circle cx="150" cy="150" r="60" fill="url(#helmetGradient)" stroke="#87cefa" stroke-width="4"/>
<!-- Stars -->
<circle cx="30" cy="20" r="2" fill="#ffffff" />
<circle cx="280" cy="50" r="3" fill="#ffffff" />
<circle cx="50" cy="250" r="2" fill="#ffffff" />
<circle cx="260" cy="230" r="1.5" fill="#ffffff" />
<circle cx="150" cy="280" r="2" fill="#ffffff" />
<circle cx="215" cy="115" r="1" fill="#ffffff" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="nebulaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff7e3b;stop-opacity:1" />
<stop offset="50%" style="stop-color:#fca0b5;stop-opacity:1" />
<stop offset="100%" style="stop-color:#476bff;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:#e6b300;stop-opacity:1" />
</radialGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
<feFlood flood-color="#ffcc00" result="flood" />
<feComposite in2="blur" operator="in" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="100%" height="100%" fill="url(#nebulaGradient)" />
<g>
<ellipse cx="150" cy="150" rx="150" ry="100" fill="url(#nebulaGradient)" opacity="0.5" />
<ellipse cx="170" cy="130" rx="70" ry="40" fill="url(#nebulaGradient)" opacity="0.4" />
<ellipse cx="100" cy="180" rx="90" ry="50" fill="url(#nebulaGradient)" opacity="0.6" />
</g>
<circle cx="150" cy="150" r="40" fill="url(#catGradient)" filter="url(#glow)" />
<path d="M130 129 C125 120, 130 110, 140 110 C150 110, 155 120, 150 130 C145 135, 135 135, 130 129" fill="#fff" />
<path d="M170 129 C175 120, 170 110, 160 110 C150 110, 145 120, 150 130 C155 135, 165 135, 170 129" fill="#fff" />
<circle cx="140" cy="130" r="5" fill="#000" />
<circle cx="160" cy="130" r="5" fill="#000" />
<path d="M135 145 C145 160, 155 160, 165 145" stroke="#000" stroke-width="2" fill="none" />
<rect x="115" y="90" width="70" height="70" rx="15" fill="none" stroke="#A6A6A6" stroke-width="2" />
<path d="M115 90 Q130 80, 150 90 L150 150 Q130 140, 115 150 Z" fill="url(#catGradient)" />
</svg>
Judge's Analysis
Player 1's submission more closely adheres to the prompt with a clear depiction of a cat-like face inside a space helmet, surrounded by colorful nebulae, represented by overlapping circles.
The composition is straightforward and effectively communicates the theme.
Player 2's image lacks clarity in representing a cat and the space helmet concept, 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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"