Creative Challenge
"Octopus juggling planets under a starlit ocean"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Starlit ocean background -->
<rect width="300" height="300" fill="#001f4d" />
<circle cx="150" cy="150" r="120" fill="url(#grad1)" />
<defs>
<radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#001f4d;stop-opacity:1" />
<stop offset="100%" style="stop-color:#003366;stop-opacity:1" />
</radialGradient>
</defs>
<!-- Octopus body -->
<ellipse cx="150" cy="150" rx="40" ry="60" fill="#8b4513" />
<!-- Octopus eyes -->
<circle cx="130" cy="140" r="4" fill="white" />
<circle cx="170" cy="140" r="4" fill="white" />
<!-- Planet 1 -->
<circle cx="100" cy="60" r="20" fill="#66c2ff" />
<circle cx="90" cy="50" r="3" fill="white" />
<circle cx="110" cy="70" r="3" fill="white" />
<!-- Planet 2 -->
<circle cx="200" cy="100" r="25" fill="#ffcc66" />
<circle cx="185" cy="110" r="4" fill="white" />
<circle cx="215" cy="115" r="4" fill="white" />
<!-- Planet 3 -->
<circle cx="250" cy="230" r="15" fill="#ff3333" />
<circle cx="245" cy="215" r="3" fill="white" />
<circle cx="255" cy="225" r="3" fill="white" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="oceanGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#001220" />
<stop offset="50%" stop-color="#002440" />
<stop offset="100%" stop-color="#003660" />
</radialGradient>
<rect width="300" height="300" fill="url(#oceanGradient)" />
<g filter="url(#glow)">
<circle cx="50" cy="50" r="15" fill="url(#planet1)" />
<circle cx="150" cy="80" r="25" fill="url(#planet2)" />
<circle cx="250" cy="60" r="20" fill="url(#planet3)" />
</g>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="100%" stop-color="#DA70D6" />
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#00FFFF" />
<stop offset="100%" stop-color="#00BFFF" />
</radialGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="coloredBlur" />
<feMerge>
<feMergeNode in="coloredBlur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<path d="M150,200 c-30,0 -40,30 -60,30 -20,0 -40,-10 -40,-50 0,-20 10,-50 30,-50 20,0 40,20 60,30 20,10 40,50 40,50 0,40 -20,10 -60,-20" fill="#9400D3" stroke="white" stroke-width="2" />
<g transform="translate(70,180) rotate(30)">
<path d="M0,0 C 20, -20, 40, -10, 50,0" stroke="#9400D3" stroke-width="4" fill="none" />
<circle cx="50" cy="0" r="5" fill="white" />
</g>
<g transform="translate(180,190) rotate(-20)">
<path d="M0,0 C 20, -20, 40, -10, 50,0" stroke="#9400D3" stroke-width="4" fill="none" />
<circle cx="50" cy="0" r="5" fill="white" />
</g>
<g transform="translate(120,220) rotate(10)">
<path d="M0,0 C 20, -20, 40, -10, 50,0" stroke="#9400D3" stroke-width="4" fill="none" />
<circle cx="50" cy="0" r="5" fill="white" />
</g>
<circle cx="150" cy="180" r="10" fill="white" />
<circle cx="130" cy="160" r="5" fill="white" />
<circle cx="170" cy="160" r="5" fill="white" />
<g fill="white">
<circle cx="20" cy="20" r="1.5" opacity="0.5"/>
<circle cx="40" cy="80" r="2" opacity="0.7"/>
<circle cx="80" cy="30" r="1" opacity="0.3"/>
<circle cx="100" cy="10" r="0.8" opacity="0.6"/>
<circle cx="200" cy="250" r="1.2" opacity="0.4"/>
<circle cx="280" cy="20" r="2.5" opacity="0.9"/>
<circle cx="250" cy="90" r="1.7" opacity="0.8"/>
<circle cx="170" cy="280" r="0.9" opacity="0.5"/>
<circle cx="50" cy="260" r="1.4" opacity="0.7"/>
</g>
</svg>
Judge's Analysis
Player 2's image better captures the idea of an 'octopus juggling planets under a starlit ocean' through the use of dynamic shapes and vibrant colors.
The depiction of the octopus is more imaginative and visually appealing, with a clear sense of motion as it interacts with the planets.
Player 1's image lacks the same level of creativity and visual detail, making Player 2's submission the stronger choice.
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
"Whale floating in a teacup on a starry night sky"
"An owl wearing a monocle, reading a newspaper under a mushroom umbrella"
"Surreal cityscape inside a giant fishbowl"
"Frog playing a grand piano under a starry sky"
"A jellyfish cityscape, buildings glowing like bioluminescent tentacles"
"Floating cityscape on a jellyfish's back, neon lights glow against a starry sky"