Creative Challenge
"Neon robot juggling glowing stars"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradient for robot body -->
<linearGradient id="robotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00FFFF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0000FF;stop-opacity:1" />
</linearGradient>
<!-- Glow filter -->
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Star Gradient -->
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FFD700; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF8C00; stop-opacity:0.8" />
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="black"/>
<!-- Robot Body -->
<g filter="url(#glow)">
<rect x="120" y="100" width="60" height="80" rx="10" fill="url(#robotGradient)" stroke="#00FFFF" stroke-width="2"/>
<!-- Robot Head -->
<rect x="130" y="60" width="40" height="40" rx="5" fill="url(#robotGradient)" stroke="#00FFFF" stroke-width="2"/>
<!-- Eyes -->
<circle cx="145" cy="80" r="5" fill="#00FFFF"/>
<circle cx="155" cy="80" r="5" fill="#00FFFF"/>
<!-- Antenna -->
<line x1="150" y1="60" x2="150" y2="50" stroke="#00FFFF" stroke-width="2"/>
<circle cx="150" cy="50" r="3" fill="#00FFFF"/>
<!-- Arms -->
<line x1="120" y1="120" x2="90" y2="150" stroke="#00FFFF" stroke-width="4" stroke-linecap="round"/>
<line x1="180" y1="120" x2="210" y2="150" stroke="#00FFFF" stroke-width="4" stroke-linecap="round"/>
<!-- Legs -->
<line x1="140" y1="180" x2="140" y2="220" stroke="#00FFFF" stroke-width="4" stroke-linecap="round"/>
<line x1="160" y1="180" x2="160" y2="220" stroke="#00FFFF" stroke-width="4" stroke-linecap="round"/>
</g>
<!-- Glowing Stars -->
<g filter="url(#glow)">
<polygon points="150,200 155,215 170,215 160,225 165,240 150,230 135,240 140,225 130,215 145,215" fill="url(#starGradient)" />
<polygon points="100,160 105,175 120,175 110,185 115,200 100,190 85,200 90,185 80,175 95,175" fill="url(#starGradient)" />
<polygon points="200,160 205,175 220,175 210,185 215,200 200,190 185,200 190,185 180,175 195,175" fill="url(#starGradient)" />
</g>
<!-- Motion Lines -->
<g stroke="#00FFFF" stroke-width="2" stroke-dasharray="4">
<path d="M90,150 C80,130 120,130 110,150" />
<path d="M210,150 C220,130 180,130 190,150" />
<path d="M150,200 C150,220 180,220 180,200" />
<path d="M150,200 C150,180 120,180 120,200" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="100%" height="100%" fill="#0c0c0c" />
<!-- Neon robot head -->
<circle cx="150" cy="80" r="30" fill="#00ff00" />
<rect x="135" y="90" width="30" height="15" fill="#00ff00" />
<!-- Neon robot body -->
<rect x="135" y="105" width="30" height="70" fill="#00ff00" />
<!-- Neon robot arms -->
<rect x="110" y="115" width="25" height="8" fill="#00ff00" />
<rect x="165" y="115" width="25" height="8" fill="#00ff00" />
<!-- Neon robot legs -->
<rect x="135" y="175" width="10" height="40" fill="#00ff00" />
<rect x="155" y="175" width="10" height="40" fill="#00ff00" />
<!-- Neon glowing stars -->
<polygon points="50,50 55,60 60,50" fill="#ff00ff" />
<polygon points="70,80 75,90 80,80" fill="#ff00ff" />
<polygon points="40,90 45,100 50,90" fill="#ff00ff" />
<polygon points="70,120 75,130 80,120" fill="#ff00ff" />
<polygon points="30,140 35,150 40,140" fill="#ff00ff" />
</svg>
Judge's Analysis
Player 1's submission effectively captures the theme with a vibrant neon robot and glowing stars, showing clear adherence to the prompt.
The use of color and glow effects enhances the visual appeal and creativity.
In contrast, Player 2's image lacks the glowing and juggling elements, 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
"An octopus juggling colorful, oversized dice under a disco ball"
"Dancing octopus wearing a top hat and monocle under a disco ball"
"Mystical mime juggling glowing, translucent jellyfish in neon moonlight"
"Clocktower sprouting giant sunflowers, clock hands as petals"
"A cloud wearing sunglasses and a fedora sipping lemonade"
"A giraffe wearing 3D glasses watching a movie on a spaceship"