Creative Challenge
"Robot juggling planets in space with a comet streaking by."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#001028"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffcc33"/>
<stop offset="100%" stop-color="#cc6600"/>
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#66ccff"/>
<stop offset="100%" stop-color="#003366"/>
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#cc66ff"/>
<stop offset="100%" stop-color="#660066"/>
</radialGradient>
<linearGradient id="cometTail" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#fff" stop-opacity="0"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGrad)" />
<!-- Stars -->
<g fill="#fff">
<circle cx="20" cy="40" r="1.2"/>
<circle cx="80" cy="15" r="1"/>
<circle cx="150" cy="60" r="1.5"/>
<circle cx="250" cy="30" r="1"/>
<circle cx="200" cy="90" r="1.2"/>
<circle cx="60" cy="120" r="1"/>
<circle cx="280" cy="150" r="1.3"/>
<circle cx="120" cy="200" r="1"/>
<circle cx="240" cy="220" r="1.4"/>
<circle cx="30" cy="250" r="1"/>
<circle cx="170" cy="280" r="1.5"/>
</g>
<!-- Comet -->
<g filter="url(#glow)">
<path d="M-20,50 Q80,40 120,60" stroke="url(#cometTail)" stroke-width="12" fill="none" />
<circle cx="120" cy="60" r="5" fill="#fff"/>
</g>
<!-- Robot -->
<g transform="translate(150,220)">
<!-- Body -->
<rect x="-25" y="-60" width="50" height="60" rx="8" ry="8" fill="#888" stroke="#555" stroke-width="1.5"/>
<!-- Head -->
<rect x="-20" y="-100" width="40" height="40" rx="6" ry="6" fill="#aaa" stroke="#555" stroke-width="1.5"/>
<!-- Eyes -->
<circle cx="-10" cy="-80" r="4" fill="#0ff" />
<circle cx="10" cy="-80" r="4" fill="#0ff" />
<!-- Antenna -->
<line x1="0" y1="-100" x2="0" y2="-110" stroke="#555" stroke-width="2"/>
<circle cx="0" cy="-113" r="3" fill="#f00"/>
<!-- Arms -->
<line x1="-25" y1="-40" x2="-70" y2="-10" stroke="#888" stroke-width="6" stroke-linecap="round"/>
<line x1="25" y1="-40" x2="70" y2="-40" stroke="#888" stroke-width="6" stroke-linecap="round"/>
<!-- Hands -->
<circle cx="-70" cy="-10" r="6" fill="#bbb"/>
<circle cx="70" cy="-40" r="6" fill="#bbb"/>
<!-- Legs -->
<line x1="-15" y1="0" x2="-15" y2="30" stroke="#888" stroke-width="6" stroke-linecap="round"/>
<line x1="15" y1="0" x2="15" y2="30" stroke="#888" stroke-width="6" stroke-linecap="round"/>
<circle cx="-15" cy="34" r="6" fill="#555"/>
<circle cx="15" cy="34" r="6" fill="#555"/>
</g>
<!-- Juggling Paths -->
<path d="M80,180 Q150,100 220,180" fill="none" stroke="#555" stroke-dasharray="4,4"/>
<path d="M60,150 Q150,70 240,150" fill="none" stroke="#555" stroke-dasharray="4,4"/>
<!-- Planets -->
<circle cx="80" cy="180" r="14" fill="url(#planet1)" filter="url(#glow)"/>
<circle cx="220" cy="180" r="12" fill="url(#planet2)" filter="url(#glow)"/>
<circle cx="150" cy="100" r="10" fill="url(#planet3)" filter="url(#glow)"/>
<!-- Ground shadow under robot -->
<ellipse cx="150" cy="255" rx="60" ry="10" fill="rgba(0,0,0,0.4)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background gradient for space -->
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#1a237e" />
<stop offset="100%" stop-color="#000032" />
</radialGradient>
<radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ffa726" />
<stop offset="100%" stop-color="#ef6c00" />
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" stop-color="#42a5f5" />
<stop offset="100%" stop-color="#1e88e5" />
</radialGradient>
<radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%" fx="70%" fy="70%">
<stop offset="0%" stop-color="#ab47bc" />
<stop offset="100%" stop-color="#6a1b9a" />
</radialGradient>
<linearGradient id="cometGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="white" stop-opacity="0.8" />
<stop offset="100%" stop-color="white" stop-opacity="0" />
</linearGradient>
</defs>
<!-- Space Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
<!-- Stars -->
<circle cx="50" cy="40" r="2" fill="white" />
<circle cx="120" cy="90" r="1.5" fill="white" />
<circle cx="250" cy="70" r="2.5" fill="white" />
<circle cx="200" cy="20" r="1.8" fill="white" />
<circle cx="180" cy="250" r="1.2" fill="white" />
<circle cx="80" cy="200" r="2.2" fill="white" />
<!-- Robot Body -->
<rect x="125" y="150" width="50" height="70" rx="8" ry="8" fill="#607d8b" />
<rect x="142" y="180" width="16" height="40" rx="3" ry="3" fill="#546e7a" />
<circle cx="150" cy="140" r="20" fill="#90a4ae" />
<rect x="140" y="125" width="20" height="10" rx="2" ry="2" fill="#cfd8dc" />
<circle cx="143" cy="135" r="3" fill="black" />
<circle cx="157" cy="135" r="3" fill="black" />
<rect x="145" y="142" width="10" height="3" fill="#37474f" />
<!-- Robot Arms -->
<line x1="125" y1="160" x2="90" y2="130" stroke="#b0bec5" stroke-width="5" />
<line x1="175" y1="160" x2="210" y2="130" stroke="#b0bec5" stroke-width="5" />
<!-- Juggling Planets -->
<circle cx="90" cy="130" r="15" fill="url(#planetGradient1)" />
<circle cx="210" cy="130" r="15" fill="url(#planetGradient2)" />
<circle cx="150" cy="80" r="15" fill="url(#planetGradient3)" />
<!-- Comet -->
<ellipse cx="260" cy="50" rx="15" ry="5" fill="white" />
<path d="M 260 50 Q 220 60 200 90" fill="none" stroke="url(#cometGradient)" stroke-width="5" />
</svg>
Judge's Analysis
Player 1's image is more visually dynamic and adheres closely to the prompt with the robot actively juggling planets, clear juggling arcs, and a vibrant comet streaking by.
The composition is well-balanced, and the subtle glow effects enhance the space theme.
Player 2's submission is simpler and less dynamic, lacking the same level of technical and compositional strength.
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.