Creative Challenge
"An octopus juggling flaming bowling pins underwater."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="yellow" />
<stop offset="50%" stop-color="orange" />
<stop offset="100%" stop-color="red" />
</radialGradient>
<pattern id="waterBubbles" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="rgba(255,255,255,0.3)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#waterBubbles)" fill-opacity="0.7" />
<ellipse cx="150" cy="250" rx="80" ry="30" fill="#98D8D8" />
<g transform="translate(150,150)">
<path d="M-40,-40 C -20,-60, 20,-60, 40,-40 M -40,-40 C -20,-20, 20,-20, 40,-40" stroke="#F08030" stroke-width="5" fill="none" />
<circle cx="-40" cy="-40" r="10" fill="#F08030" />
<circle cx="40" cy="-40" r="10" fill="#F08030" />
<g transform="rotate(30)">
<path d="M -10, -20 L 0, 0 L 10, -20 L 0, -60 Z" fill="url(#flameGradient)" />
<path d="M -5, -65 L 0,-70 L 5,-65" fill="yellow" />
<path d="M -3,-60 C -2, -70, 2, -70, 3, -60" stroke="orange" stroke-width="2" fill="none" />
</g>
<g transform="rotate(-15)">
<path d="M -10, -20 L 0, 0 L 10, -20 L 0, -60 Z" fill="url(#flameGradient)" />
<path d="M -5, -65 L 0,-70 L 5,-65" fill="yellow" />
<path d="M -3,-60 C -2, -70, 2, -70, 3, -60" stroke="orange" stroke-width="2" fill="none" />
</g>
<g transform="rotate(90)">
<path d="M -10, 20 L 0, 0 L 10, 20 L 0, 60 Z" fill="url(#flameGradient)" transform="scale(1,-1)" />
<path d="M -5, 65 L 0, 70 L 5, 65" fill="yellow" transform="scale(1,-1)" />
<path d="M -3,60 C -2, 70, 2, 70, 3, 60" stroke="orange" stroke-width="2" fill="none" transform="scale(1,-1)" />
</g>
</g>
<g transform="translate(100,200)">
<circle cx="0" cy="0" r="15" fill="#DA4040" />
<animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="8s" repeatCount="indefinite" />
<animate attributeName="cx" values="0;-20;0" dur="2s" repeatCount="indefinite" />
</g>
<g transform="translate(200,200)">
<circle cx="0" cy="0" r="15" fill="#DA4040" />
<animateTransform attributeName="transform" type="rotate" from="0 0 0" to="-360 0 0" dur="6s" repeatCount="indefinite" />
<animate attributeName="cx" values="0;20;0" dur="2s" repeatCount="indefinite" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Underwater background gradient -->
<linearGradient id="underwaterGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#66ccff"/>
<stop offset="100%" stop-color="#003366"/>
</linearGradient>
<!-- Octopus head gradient -->
<radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#9933ff"/>
<stop offset="100%" stop-color="#330066"/>
</radialGradient>
<!-- Bowling pin gradient -->
<linearGradient id="bowlingPinGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</linearGradient>
<!-- Flame gradient for the flaming bowling pins -->
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="yellow"/>
<stop offset="50%" stop-color="orange"/>
<stop offset="100%" stop-color="red"/>
</radialGradient>
</defs>
<!-- Underwater background -->
<rect width="300" height="300" fill="url(#underwaterGradient)"/>
<!-- Bubbles to enhance the underwater feel -->
<circle cx="50" cy="50" r="3" fill="white" opacity="0.6"/>
<circle cx="250" cy="80" r="2.5" fill="white" opacity="0.6"/>
<circle cx="80" cy="150" r="2.5" fill="white" opacity="0.6"/>
<circle cx="220" cy="130" r="3" fill="white" opacity="0.6"/>
<circle cx="160" cy="40" r="2" fill="white" opacity="0.6"/>
<circle cx="200" cy="180" r="2" fill="white" opacity="0.6"/>
<!-- Octopus trailing tentacles (drawn behind) -->
<g id="tentacles-back" stroke="darkslateblue" stroke-width="4" fill="none" stroke-linecap="round">
<path d="M100,210 C80,230,70,250,90,270"/>
<path d="M120,210 C110,230,100,250,120,270"/>
<path d="M180,210 C200,230,210,250,190,270"/>
<path d="M200,210 C220,230,230,250,210,270"/>
<path d="M150,200 C130,220,140,250,150,270"/>
</g>
<!-- Flaming bowling pins being juggled -->
<g id="bowlingPins">
<!-- Left Bowling Pin -->
<g transform="translate(90,100) rotate(-10,10,20)">
<path d="M10,40 C5,30 5,15 10,0 C15,15 15,30 10,40 Z" fill="url(#bowlingPinGradient)" stroke="gray" stroke-width="0.5"/>
<path d="M10,0 C7,-4 7,-8 10,-12 C13,-8 13,-4 10,0 Z" fill="url(#flameGradient)"/>
</g>
<!-- Middle Bowling Pin -->
<g transform="translate(140,60) rotate(0,10,20)">
<path d="M10,40 C5,30 5,15 10,0 C15,15 15,30 10,40 Z" fill="url(#bowlingPinGradient)" stroke="gray" stroke-width="0.5"/>
<path d="M10,0 C7,-4 7,-8 10,-12 C13,-8 13,-4 10,0 Z" fill="url(#flameGradient)"/>
</g>
<!-- Right Bowling Pin -->
<g transform="translate(190,100) rotate(10,10,20)">
<path d="M10,40 C5,30 5,15 10,0 C15,15 15,30 10,40 Z" fill="url(#bowlingPinGradient)" stroke="gray" stroke-width="0.5"/>
<path d="M10,0 C7,-4 7,-8 10,-12 C13,-8 13,-4 10,0 Z" fill="url(#flameGradient)"/>
</g>
</g>
<!-- Octopus juggling tentacles (drawn in front) -->
<g id="tentacles-front" stroke="mediumorchid" stroke-width="4" fill="none" stroke-linecap="round">
<path d="M130,190 C110,150,100,120,110,100"/>
<path d="M150,190 C150,140,150,110,150,70"/>
<path d="M170,190 C190,150,200,120,190,100"/>
</g>
<!-- Octopus head and eyes -->
<g id="octopus">
<ellipse cx="150" cy="190" rx="20" ry="15" fill="url(#octoGradient)"/>
<circle cx="144" cy="185" r="2" fill="white"/>
<circle cx="156" cy="185" r="2" fill="white"/>
<circle cx="144" cy="185" r="1" fill="black"/>
<circle cx="156" cy="185" r="1" fill="black"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is visually cohesive, creative, and adheres well to the prompt, depicting an octopus juggling flaming bowling pins underwater with clear underwater elements and a well-rendered octopus.
Player 1's submission is less clear, with abstract elements that make it harder to interpret the scene and less effective in capturing the prompt.
Player 2's technical quality and overall composition are stronger and more appealing.
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 clock made of clouds, time shown by shifting colors of a sunset"
"Clockwork owl in a midnight mechanical forest"
"A giraffe wearing a diving suit exploring an underwater city"