Creative Challenge
"Octopus juggling planets under a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="planetGrad">
<stop offset="0%" stop-color="#66CCFF"/>
<stop offset="100%" stop-color="#3399FF"/>
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="white"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#stars)"/>
<g filter="url(#glow)">
<!-- Octopus Body -->
<path d="M150,250 Q130,230 120,220 Q110,210 100,200 Q90,190 80,180 Q70,170 60,160"
fill="#663399" stroke="#442266" stroke-width="2"/>
<!-- Tentacles -->
<path d="M150,250 C160,240 170,230 180,220" fill="none" stroke="#663399" stroke-width="4" opacity="0.8"/>
<path d="M150,250 C140,240 130,230 120,220" fill="none" stroke="#663399" stroke-width="4" opacity="0.8"/>
<!-- Planets -->
<g transform="translate(100,150)">
<circle cx="0" cy="0" r="20" fill="url(#planetGrad)" filter="url(#glow)"/>
<circle cx="0" cy="0" r="15" fill="#FF9966"/>
</g>
<g transform="translate(150,100)">
<circle cx="0" cy="0" r="25" fill="url(#planetGrad)" filter="url(#glow)"/>
<circle cx="0" cy="0" r="20" fill="#FFCC66"/>
</g>
<g transform="translate(200,180)">
<circle cx="0" cy="0" r="30" fill="url(#planetGrad)" filter="url(#glow)"/>
<circle cx="0" cy="0" r="25" fill="#99CCFF"/>
</g>
</g>
<!-- Starry Sky Details -->
<g transform="translate(150,50)">
<circle cx="0" cy="0" r="150" fill="#000033"/>
<circle cx="0" cy="0" r="130" fill="#111144"/>
<circle cx="0" cy="0" r="110" fill="#222255"/>
</g>
<!-- Shooting Stars -->
<line x1="50" y1="50" x2="80" y2="80" stroke="white" stroke-width="2" filter="url(#glow)"/>
<line x1="250" y1="30" x2="280" y2="60" stroke="white" stroke-width="2" filter="url(#glow)"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background Gradient -->
<rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)"/>
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#13164B" stop-opacity="1"/>
<stop offset="1" stop-color="#040B21" stop-opacity="1"/>
</linearGradient>
</defs>
<!-- Starry Night Sky -->
<g>
<circle cx="20" cy="20" r="2" fill="#FFC700"/>
<circle cx="50" cy="80" r="3" fill="#FFC700"/>
<circle cx="100" cy="40" r="1" fill="#FFC700"/>
<circle cx="230" cy="20" r="2" fill="#FFC700"/>
<circle cx="280" cy="80" r="1" fill="#FFC700"/>
<circle cx="200" cy="200" r="3" fill="#FFC700"/>
<circle cx="80" cy="250" r="2" fill="#FFC700"/>
<circle cx="150" cy="280" r="1" fill="#FFC700"/>
</g>
<!-- Octopus -->
<g transform="translate(150 150)">
<path fill="#BE343E" d="M 0 -50 C -30 -50 -50 -30 -50 0 S -30 50 0 50 Z"/>
<path fill="#BE343E" d="M 50 0 C 30 30 50 50 50 50 L 30 70 C 30 70 0 50 -20 30 Z"/>
<path fill="#BE343E" d="M -50 0 C -30 -30 -50 -50 -50 -50 L -30 -70 C -30 -70 0 -50 20 -30 Z"/>
<circle cx="0" cy="0" r="20" fill="#E0635F"/>
<circle cx="30" cy="0" r="15" fill="#F24365"/>
<circle cx="-30" cy="0" r="15" fill="#F24365"/>
</g>
<!-- Juggled Planets -->
<g transform="translate(150 150)">
<circle cx="70" cy="-30" r="15" fill="#00BBF7" filter="url(#glow)"/>
<circle cx="40" cy="50" r="10" fill="#3A61FA" filter="url(#glow)"/>
<circle cx="-70" cy="0" r="12" fill="#FFC86E" filter="url(#glow)"/>
</g>
<defs>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feColorMatrix type="matrix" values="1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 18 -7" result="glow"/>
<feBlend mode="soft-light" in="SourceGraphic" in2="glow);?>
</filter>
</defs>
<!-- Tentacles -->
<path fill="#BE343E" d="M 200 150 Q 230 130 230 110 Q 190 90 200 70 Z" opacity="0.8"/>
<path fill="#BE343E" d="M 150 180 Q 180 200 180 220 Q 150 240 120 220 Z" opacity="0.8"/>
<path fill="#BE343E" d="M 100 150 Q 70 130 70 110 Q 110 90 100 70 Z" opacity="0.8"/>
</svg>
Judge's Analysis
Player 1's image captures the theme with a visible octopus and planets, even though it's partially obscured, while Player 2's image failed to load, making it impossible to evaluate.
Player 1 demonstrates adherence to the prompt and some level of creativity and technical execution.
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 astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"