Creative Challenge
"A neon octopus juggling planets in outer space"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Define gradients and patterns -->
<defs>
<radialGradient id="neonGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#0ff" stop-opacity="1"/>
<stop offset="100%" stop-color="#00f" stop-opacity="0.5"/>
</radialGradient>
<radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#f0f"/>
<stop offset="100%" stop-color="#800"/>
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff0"/>
<stop offset="100%" stop-color="#f80"/>
</radialGradient>
<radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#0f0"/>
<stop offset="100%" stop-color="#080"/>
</radialGradient>
<radialGradient id="spaceBG" cx="50%" cy="50%" r="75%">
<stop offset="0%" stop-color="#000"/>
<stop offset="100%" stop-color="#111"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Outer space background -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceBG)" />
<!-- Stars -->
<circle cx="50" cy="30" r="1.2" fill="white" />
<circle cx="150" cy="20" r="1" fill="white" />
<circle cx="250" cy="50" r="1.5" fill="white" />
<circle cx="80" cy="200" r="1.2" fill="white" />
<circle cx="230" cy="180" r="1.2" fill="white" />
<circle cx="120" cy="80" r="1.2" fill="white" />
<circle cx="180" cy="100" r="1.2" fill="white" />
<circle cx="270" cy="270" r="1.5" fill="white" />
<circle cx="30" cy="250" r="1.3" fill="white" />
<!-- Octopus body -->
<g id="octopus" filter="url(#glow)">
<ellipse cx="150" cy="160" rx="30" ry="40" fill="none" stroke="cyan" stroke-width="2"/>
<!-- Tentacles -->
<path d="M120,180 C100,210 80,230 60,220" fill="none" stroke="cyan" stroke-width="2"/>
<path d="M130,190 C110,220 90,240 70,230" fill="none" stroke="cyan" stroke-width="2"/>
<path d="M150,195 C140,230 130,245 120,240" fill="none" stroke="cyan" stroke-width="2"/>
<path d="M170,190 C180,220 200,240 210,230" fill="none" stroke="cyan" stroke-width="2"/>
<path d="M180,180 C200,205 220,220 240,210" fill="none" stroke="cyan" stroke-width="2"/>
<path d="M150,200 C140,230 160,245 150,260" fill="none" stroke="cyan" stroke-width="2"/>
<path d="M130,200 C110,230 90,245 80,260" fill="none" stroke="cyan" stroke-width="2"/>
<!-- Eyes -->
<circle cx="142" cy="150" r="2" fill="cyan"/>
<circle cx="158" cy="150" r="2" fill="cyan"/>
</g>
<!-- Planets being juggled -->
<g id="planets" filter="url(#glow)">
<!-- Planet 1 -->
<circle cx="90" cy="80" r="12" fill="url(#planetGradient1)"/>
<!-- Planet 2 -->
<circle cx="210" cy="70" r="10" fill="url(#planetGradient2)"/>
<!-- Planet 3 -->
<circle cx="160" cy="30" r="8" fill="url(#planetGradient3)"/>
<!-- Optional planetary rings for Planet 1 -->
<ellipse cx="90" cy="80" rx="15" ry="4" fill="none" stroke="#f0f" stroke-width="1"/>
</g>
<!-- "Juggling" arcs from octopus tentacles to planets -->
<g stroke="cyan" stroke-width="1" stroke-dasharray="2,2">
<line x1="120" y1="180" x2="90" y2="80" stroke="cyan"/>
<line x1="170" y1="190" x2="210" y2="70" stroke="cyan"/>
<line x1="150" y1="195" x2="160" y2="30" stroke="cyan"/>
</g>
<!-- Neon Octopus inner details -->
<g id="inner-details">
<path d="M140,160 Q150,155 160,160" fill="none" stroke="cyan" stroke-width="1"/>
<path d="M140,170 Q150,165 160,170" fill="none" stroke="cyan" stroke-width="1"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background space -->
<rect x="0" y="0" width="300" height="300" fill="#000022" />
<!-- Neon octopus -->
<circle cx="150" cy="150" r="80" fill="#00ffcc" />
<circle cx="95" cy="130" r="10" fill="#00ffcc" />
<circle cx="120" cy="95" r="10" fill="#00ffcc" />
<circle cx="180" cy="95" r="10" fill="#00ffcc" />
<circle cx="205" cy="130" r="10" fill="#00ffcc" />
<rect x="130" y="150" width="40" height="50" fill="#00ffcc" />
<circle cx="90" cy="170" r="10" fill="#00ffcc" />
<circle cx="210" cy="170" r="10" fill="#00ffcc" />
<polygon points="138,170 162,170 150,200" fill="#00ffcc" />
<!-- Planets -->
<circle cx="50" cy="50" r="25" fill="purple" />
<circle cx="250" cy="50" r="25" fill="orange" />
<circle cx="50" cy="250" r="25" fill="teal" />
<circle cx="250" cy="250" r="25" fill="pink" />
<!-- Planet rings -->
<circle cx="50" cy="50" r="30" stroke="#ffcc00" stroke-width="5" fill="none" />
<circle cx="250" cy="50" r="30" stroke="#ffcc00" stroke-width="5" fill="none" />
<circle cx="50" cy="250" r="30" stroke="#ffcc00" stroke-width="5" fill="none" />
<circle cx="250" cy="250" r="30" stroke="#ffcc00" stroke-width="5" fill="none" />
<!-- Neon glow effect -->
<filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" result="glow" />
<feMerge>
<feMergeNode in="glow" />
<feMergeNode in="glow" />
<feMergeNode in="glow" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<!-- Apply glow to octopus -->
<circle cx="150" cy="150" r="80" fill="#00ffcc" filter="url(#neonGlow)" />
<circle cx="95" cy="130" r="10" fill="#00ffcc" filter="url(#neonGlow)" />
<circle cx="120" cy="95" r="10" fill="#00ffcc" filter="url(#neonGlow)" />
<circle cx="180" cy="95" r="10" fill="#00ffcc" filter="url(#neonGlow)" />
<circle cx="205" cy="130" r="10" fill="#00ffcc" filter="url(#neonGlow)" />
<rect x="130" y="150" width="40" height="50" fill="#00ffcc" filter="url(#neonGlow)" />
<circle cx="90" cy="170" r="10" fill="#00ffcc" filter="url(#neonGlow)" />
<circle cx="210" cy="170" r="10" fill="#00ffcc" filter="url(#neonGlow)" />
<polygon points="138,170 162,170 150,200" fill="#00ffcc" filter="url(#neonGlow)" />
</svg>
Judge's Analysis
Player 1's image effectively portrays the idea of a neon octopus juggling planets in outer space.
The neon lines clearly represent an octopus, and the planets are creatively depicted with bright colors and rings, enhancing the visual appeal.
Player 2's image lacks the clear representation of an octopus and planetary juggling, making Player 1's submission more 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
"Floating coral islands in a stormy sky"
"Flamingo on roller skates juggling pineapples"
"A cyberpunk octopus playing a violin"
"A giraffe wearing a trench coat, peeking around a city corner"
"Rainbow zebra playing a saxophone under a disco ball"
"Surreal underwater library with glowing jellyfish as lamps"