Creative Challenge
"Robot octopus juggling neon paintbrushes"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with subtle texture -->
<rect width="300" height="300" fill="#1a1a2e" />
<g id="stars">
<path d="M50,50 L60,60 L40,60 L50,50" fill="#fff" opacity="0.5"/>
<path d="M150,100 L160,110 L140,110 L150,100" fill="#fff" opacity="0.5"/>
<path d="M250,200 L260,210 L240,210 L250,200" fill="#fff" opacity="0.5"/>
</g>
<!-- Robot Octopus Body -->
<g id="octopus">
<circle cx="150" cy="150" r="40" fill="url(#metalGradient)" stroke="#333" stroke-width="2"/>
<rect x="130" y="140" width="40" height="20" fill="#666" rx="5"/>
<rect x="140" y="160" width="20" height="40" fill="#666" rx="5"/>
</g>
<!-- Tentacles -->
<g id="tentacles">
<path d="M150,190 Q170,220 190,220 L230,200 Q210,180 190,170 L170,160" fill="url(#tentacleGradient)"/>
<path d="M150,190 Q170,160 190,140 L230,120 Q210,100 190,110 L170,120" fill="url(#tentacleGradient)"/>
<path d="M150,170 Q160,180 170,190" stroke="url(#tentacleGradient)" stroke-width="4" fill="none"/>
</g>
<!-- Paintbrushes -->
<g id="paintbrushes">
<!-- Brush 1 -->
<rect x="90" y="80" width="10" height="40" fill="url(#neonBlue)" rx="2"/>
<circle cx="100" cy="60" r="15" fill="url(#brushGradient)"/>
<animate attributeName="transform" from="translate(0,0)" to="translate(-20,20)" dur="2s" repeatCount="indefinite"/>
<!-- Brush 2 -->
<rect x="190" y="120" width="10" height="40" fill="url(#neonPink)" rx="2"/>
<circle cx="200" cy="100" r="15" fill="url(#brushGradient)"/>
<animate attributeName="transform" from="translate(0,0)" to="translate(20,-20)" dur="2s" repeatCount="indefinite"/>
<!-- Brush 3 -->
<rect x="150" y="180" width="10" height="40" fill="url(#neonGreen)" rx="2"/>
<circle cx="160" cy="160" r="15" fill="url(#brushGradient)"/>
<animate attributeName="transform" from="translate(0,0)" to="translate(0,0)" dur="4s" repeatCount="indefinite"/>
</g>
<!-- Gradients -->
<defs>
<linearGradient id="metalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#666;stop-opacity:1" />
<stop offset="100%" style="stop-color:#999;stop-opacity:1" />
</linearGradient>
<radialGradient id="tentacleGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" style="stop-color:#888;stop-opacity:1" />
<stop offset="100%" style="stop-color:#444;stop-opacity:1" />
</radialGradient>
<linearGradient id="neonBlue" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00f;stop-opacity:1" />
<stop offset="100%" style="stop-color:#009;stop-opacity:1" />
</linearGradient>
<linearGradient id="neonPink" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f0f;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f0c;stop-opacity:1" />
</linearGradient>
<linearGradient id="neonGreen" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0f0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0c0;stop-opacity:1" />
</linearGradient>
<radialGradient id="brushGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" style="stop-color:#fff;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#fff;stop-opacity:0" />
</radialGradient>
</defs>
<!-- Animation Pulse Effect -->
<style>
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
#paintbrushes circle {
animation: pulse 2s infinite;
}
</style>
<!-- Glowing Effects -->
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="robotGradient">
<stop offset="0%" stop-color="#999" />
<stop offset="100%" stop-color="#666" />
</linearGradient>
<linearGradient id="paintbrush">
<stop offset="0%" stop-color="#FF00FF" />
<stop offset="100%" stop-color="#FF00FF" />
</linearGradient>
<linearGradient id="background">
<stop offset="0%" stop-color="#1a1a1a" />
<stop offset="100%" stop-color="#2a2a2a" />
</linearGradient>
<radialGradient id="glowEffect">
<stop offset="0%" stop-color="white" />
<stop offset="100%" stop-color="transparent" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#background)"/>
<g transform="translate(150,150)">
<!-- Robot Octopus Body -->
<circle r="30" fill="url(#robotGradient)" stroke="#fff" stroke-width="2"/>
<!-- Eyes -->
<circle cx="-10" cy="-10" r="5" fill="#fff"/>
<circle cx="10" cy="-10" r="5" fill="#fff"/>
<rect x="-2" y="-20" width="4" height="10" fill="#000"/>
<rect x="8" y="-20" width="4" height="10" fill="#000"/>
<!-- Smile -->
<path d="M-20,10 Q0,20 20,10" stroke="#fff" stroke-width="2" fill="none"/>
<!-- Arms -->
<g transform="rotate(45)">
<rect x="-2" y="-20" width="4" height="40" fill="url(#robotGradient)" rx="2"/>
<rect x="-2" y="20" width="4" height="20" fill="url(#robotGradient)" rx="2"/>
</g>
<g transform="rotate(-45)">
<rect x="-2" y="-20" width="4" height="40" fill="url(#robotGradient)" rx="2"/>
<rect x="-2" y="20" width="4" height="20" fill="url(#robotGradient)" rx="2"/>
</g>
<g transform="rotate(90)">
<rect x="-2" y="-20" width="4" height="40" fill="url(#robotGradient)" rx="2"/>
<rect x="-2" y="20" width="4" height="20" fill="url(#robotGradient)" rx="2"/>
</g>
<!-- Paintbrushes -->
<g transform="rotate(30)">
<rect x="-5" y="-5" width="10" height="50" fill="url(#paintbrush)" rx="5"/>
<rect x="-5" y="45" width="10" height="10" fill="url(#paintbrush)" rx="5"/>
</g>
<g transform="rotate(150)">
<rect x="-5" y="-5" width="10" height="50" fill="url(#paintbrush)" rx="5"/>
<rect x="-5" y="45" width="10" height="10" fill="url(#paintbrush)" rx="5"/>
</g>
<g transform="rotate(-90)">
<rect x="-5" y="-5" width="10" height="50" fill="url(#paintbrush)" rx="5"/>
<rect x="-5" y="45" width="10" height="10" fill="url(#paintbrush)" rx="5"/>
</g>
<!-- Glowing Effects -->
<circle r="35" fill="url(#glowEffect)" opacity="0.3"/>
<circle r="25" fill="url(#glowEffect)" opacity="0.3"/>
</g>
</svg>
Judge's Analysis
Player 1's submission creatively incorporates a robot octopus concept with multiple appendages and neon paintbrushes, aligning well with the prompt.
The use of varied colors for the brushes adds visual interest and appeal.
Player 2's image, while technically clean, lacks the complexity and adherence to the prompt as it does not effectively convey the octopus or juggling elements.
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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"