Creative Challenge
"An octopus juggling planets under a disco ball"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Definitions for gradients and patterns -->
<defs>
<!-- Background gradient -->
<linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#2c3e50"/>
<stop offset="100%" stop-color="#1a252f"/>
</linearGradient>
<!-- Disco ball gradient -->
<radialGradient id="discoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</radialGradient>
<!-- Octopus body gradient -->
<radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#d84315"/>
</radialGradient>
<!-- Planet gradients -->
<radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#3498db"/>
<stop offset="100%" stop-color="#2980b9"/>
</radialGradient>
<radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#2ecc71"/>
<stop offset="100%" stop-color="#27ae60"/>
</radialGradient>
<radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#9b59b6"/>
<stop offset="100%" stop-color="#8e44ad"/>
</radialGradient>
<!-- Pattern for disco ball -->
<pattern id="discoPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="url(#discoGradient)" />
</pattern>
<!-- Light beams gradient -->
<linearGradient id="beamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="rgba(255,255,255,0.4)" />
<stop offset="100%" stop-color="rgba(255,255,255,0)" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Disco Ball -->
<g>
<circle cx="150" cy="60" r="30" fill="url(#discoPattern)" stroke="#ffffff" stroke-width="2"/>
<!-- Reflective lines -->
<g stroke="url(#beamGradient)" stroke-width="1">
<line x1="150" y1="30" x2="150" y2="90" />
<line x1="120" y1="50" x2="180" y2="70" />
<line x1="180" y1="50" x2="120" y2="70" />
<line x1="135" y1="40" x2="165" y2="80" />
<line x1="165" y1="40" x2="135" y2="80" />
</g>
</g>
<!-- Octopus -->
<g>
<!-- Body -->
<ellipse cx="150" cy="220" rx="40" ry="25" fill="url(#octopusGradient)" stroke="#bf360c" stroke-width="2"/>
<!-- Eyes -->
<circle cx="140" cy="215" r="3" fill="#ffffff"/>
<circle cx="160" cy="215" r="3" fill="#ffffff"/>
<circle cx="140" cy="215" r="1.5" fill="#000000"/>
<circle cx="160" cy="215" r="1.5" fill="#000000"/>
<!-- Tentacles -->
<!-- Left Tentacles -->
<path d="M130,220 Q110,240 100,220" fill="none" stroke="#e67e22" stroke-width="3"/>
<path d="M120,230 Q100,250 90,220" fill="none" stroke="#e67e22" stroke-width="3"/>
<path d="M110,210 Q90,230 80,200" fill="none" stroke="#e67e22" stroke-width="3"/>
<path d="M140,225 Q130,245 120,225" fill="none" stroke="#e67e22" stroke-width="3"/>
<!-- Right Tentacles -->
<path d="M170,220 Q190,240 200,220" fill="none" stroke="#e67e22" stroke-width="3"/>
<path d="M180,230 Q200,250 210,220" fill="none" stroke="#e67e22" stroke-width="3"/>
<path d="M190,210 Q210,230 220,200" fill="none" stroke="#e67e22" stroke-width="3"/>
<path d="M160,225 Q170,245 180,225" fill="none" stroke="#e67e22" stroke-width="3"/>
</g>
<!-- Planets -->
<g>
<!-- Planet 1 -->
<circle cx="100" cy="120" r="15" fill="url(#planet1Gradient)" stroke="#2980b9" stroke-width="1"/>
<ellipse cx="100" cy="120" rx="20" ry="5" fill="none" stroke="#2980b9" stroke-width="1" transform="rotate(30 100 120)"/>
<!-- Planet 2 -->
<circle cx="200" cy="100" r="12" fill="url(#planet2Gradient)" stroke="#27ae60" stroke-width="1"/>
<ellipse cx="200" cy="100" rx="18" ry="4" fill="none" stroke="#27ae60" stroke-width="1" transform="rotate(45 200 100)"/>
<!-- Planet 3 -->
<circle cx="150" cy="150" r="10" fill="url(#planet3Gradient)" stroke="#8e44ad" stroke-width="1"/>
<ellipse cx="150" cy="150" rx="14" ry="3" fill="none" stroke="#8e44ad" stroke-width="1" transform="rotate(60 150 150)"/>
</g>
<!-- Juggling Paths -->
<g stroke="#ffffff" stroke-width="1" fill="none" opacity="0.6">
<path d="M150,220 Q100,120 100,120" />
<path d="M150,220 Q200,100 200,100" />
<path d="M150,220 Q150,150 150,150" />
</g>
<!-- Stars -->
<g fill="#ffffff" opacity="0.8">
<circle cx="50" cy="30" r="1.5"/>
<circle cx="80" cy="80" r="1"/>
<circle cx="220" cy="40" r="1.2"/>
<circle cx="260" cy="90" r="1"/>
<circle cx="30" cy="200" r="1"/>
<circle cx="270" cy="220" r="1.3"/>
<circle cx="200" cy="250" r="1"/>
<circle cx="100" cy="270" r="1.5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="discoShine" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="white" stop-opacity="0.8"/>
<stop offset="100%" stop-color="silver" stop-opacity="0.2"/>
</radialGradient>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff6b6b"/>
<stop offset="100%" stop-color="#ee5253"/>
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#4834d4"/>
<stop offset="100%" stop-color="#686de0"/>
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#badc58"/>
<stop offset="100%" stop-color="#6ab04c"/>
</radialGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#130f40"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="100" cy="30" r="1.5" fill="white"/>
<circle cx="200" cy="70" r="1" fill="white"/>
<circle cx="250" cy="40" r="1.2" fill="white"/>
<circle cx="80" cy="180" r="1" fill="white"/>
<circle cx="220" cy="220" r="1.3" fill="white"/>
</g>
<!-- Disco Ball -->
<circle cx="150" cy="50" r="30" fill="silver"/>
<circle cx="150" cy="50" r="28" fill="url(#discoShine)"/>
<line x1="150" y1="0" x2="150" y2="20" stroke="#dcdde1" stroke-width="2"/>
<!-- Disco Ball Facets -->
<g transform="translate(150,50)">
<rect x="-20" y="-20" width="8" height="8" fill="white" opacity="0.6"/>
<rect x="12" y="-15" width="8" height="8" fill="white" opacity="0.6"/>
<rect x="-5" y="10" width="8" height="8" fill="white" opacity="0.6"/>
</g>
<!-- Octopus -->
<g transform="translate(150,180)">
<!-- Body -->
<path d="M-30,-20 Q0,-40 30,-20 Q40,0 30,20 Q0,40 -30,20 Q-40,0 -30,-20"
fill="#e056fd"/>
<!-- Tentacles -->
<path d="M-25,15 Q-40,40 -60,30" fill="none" stroke="#e056fd" stroke-width="8"/>
<path d="M-15,20 Q-20,50 -30,60" fill="none" stroke="#e056fd" stroke-width="8"/>
<path d="M5,20 Q10,50 20,60" fill="none" stroke="#e056fd" stroke-width="8"/>
<path d="M25,15 Q40,40 60,30" fill="none" stroke="#e056fd" stroke-width="8"/>
</g>
<!-- Juggling Planets -->
<circle cx="100" cy="120" r="20" fill="url(#planet1)"/>
<circle cx="200" cy="140" r="25" fill="url(#planet2)"/>
<circle cx="150" cy="100" r="15" fill="url(#planet3)"/>
<!-- Planet Rings -->
<ellipse cx="200" cy="140" rx="35" ry="10" fill="none" stroke="#686de0" stroke-width="2"/>
<!-- Light Beams -->
<path d="M120,50 L80,100" stroke="white" stroke-width="1" opacity="0.3"/>
<path d="M180,50 L220,100" stroke="white" stroke-width="1" opacity="0.3"/>
<path d="M150,80 L150,120" stroke="white" stroke-width="1" opacity="0.3"/>
</svg>
Judge's Analysis
Player 1 effectively combines creativity and adherence to the prompt with a clear depiction of an octopus juggling planets under a disco ball.
The octopus's expression and the dynamic lines add to the visual appeal, while the use of colors and composition enhance the overall technical quality.
Player 2's submission, though colorful, lacks the clear representation of juggling and a disco ball, making Player 1 the more compelling 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
"A dragon made of clouds floating above a calm sea"
"Frog in a suit riding a unicycle on a rainbow"
"Swirling ice cream cone galaxy, stars as sprinkles"
"Penguins at a disco dance-off with mirrored sunglasses"
"Octopus conducting a symphony of glowing fish under a moonlit sea"
"Bioluminescent jellyfish skydiving over a city at night"