Creative Challenge
"Dancing octopus wearing a top hat and monocle in a sea of musical notes"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bodyGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF6B6B"/>
<stop offset="100%" style="stop-color:#4ECDC4"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Musical notes background -->
<g class="notes" fill="#2C3E50" opacity="0.2">
<path d="M50,100 l0,40 l15,-5 l0,-40 z M65,135 a8,8 0 1,1 -16,0" />
<path d="M200,50 l0,40 l15,-5 l0,-40 z M215,85 a8,8 0 1,1 -16,0" />
<path d="M250,150 l0,40 l15,-5 l0,-40 z M265,185 a8,8 0 1,1 -16,0" />
<path d="M100,200 l0,40 l15,-5 l0,-40 z M115,235 a8,8 0 1,1 -16,0" />
</g>
<!-- Octopus body -->
<circle cx="150" cy="150" r="40" fill="url(#bodyGrad)"/>
<!-- Tentacles -->
<g class="tentacles" fill="none" stroke="url(#bodyGrad)" stroke-width="8">
<path d="M120,170 Q90,200 70,190 T40,220" style="animation: wave 2s infinite"/>
<path d="M130,180 Q110,220 90,210 T60,240"/>
<path d="M150,190 Q150,230 130,240 T120,270"/>
<path d="M170,180 Q190,220 170,240 T180,270"/>
<path d="M180,170 Q210,200 200,220 T230,240"/>
<path d="M190,160 Q230,180 220,200 T250,210"/>
</g>
<!-- Top hat -->
<path d="M150,110 h-30 v-30 h60 v30 z" fill="#2C3E50"/>
<path d="M110,110 h80 v5 h-80 z" fill="#2C3E50"/>
<!-- Monocle -->
<circle cx="170" cy="140" r="10" fill="none" stroke="gold" stroke-width="2"/>
<path d="M170,150 Q180,160 190,165" fill="none" stroke="gold" stroke-width="2"/>
<!-- Eyes -->
<circle cx="140" cy="140" r="5" fill="#2C3E50"/>
<circle cx="170" cy="140" r="5" fill="#2C3E50"/>
<!-- Smile -->
<path d="M140,160 Q150,170 160,160" fill="none" stroke="#2C3E50" stroke-width="2"/>
<style>
@keyframes wave {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.tentacles path {
animation: wave 2s infinite;
animation-delay: calc(var(--i) * -0.2s);
}
</style>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#bg-gradient)" />
<linearGradient id="bg-gradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#3498db" />
<stop offset="100%" stop-color="#2ecc71" />
</linearGradient>
<!-- Sea of musical notes -->
<pattern id="music-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="#f1c40f" rx="2" />
<path d="M 10 0 L 10 20 M 0 10 L 20 10" stroke="#f1c40f" stroke-width="2" />
</pattern>
<rect x="0" y="0" width="300" height="300" fill="url(#music-pattern)" />
<!-- Octopus -->
<g transform="translate(150 150)">
<!-- Body -->
<circle cx="0" cy="0" r="40" fill="#ecf0f1" />
<!-- Tentacles -->
<g transform="rotate(-45)">
<path d="M 0 40 C 10 60 20 80 30 100" fill="none" stroke="#ecf0f1" stroke-width="8" />
<path d="M 0 40 C -10 60 -20 80 -30 100" fill="none" stroke="#ecf0f1" stroke-width="8" />
</g>
<g transform="rotate(45)">
<path d="M 0 40 C 10 60 20 80 30 100" fill="none" stroke="#ecf0f1" stroke-width="8" />
<path d="M 0 40 C -10 60 -20 80 -30 100" fill="none" stroke="#ecf0f1" stroke-width="8" />
</g>
<!-- Top hat -->
<rect x="-30" y="-60" width="60" height="20" fill="#2c3e50" rx="5" />
<!-- Monocle -->
<circle cx="-15" cy="-40" r="5" fill="#2c3e50" />
<circle cx="-15" cy="-40" r="3" fill="#fff" />
</g>
<!-- Dance motion -->
<g transform="translate(150 150)">
<circle cx="0" cy="0" r="20" fill="none" stroke="#ecf0f1" stroke-width="4" stroke-dasharray="10 10" />
<circle cx="0" cy="0" r="30" fill="none" stroke="#ecf0f1" stroke-width="4" stroke-dasharray="10 10" />
<circle cx="0" cy="0" r="40" fill="none" stroke="#ecf0f1" stroke-width="4" stroke-dasharray="10 10" />
</g>
</svg>
Judge's Analysis
Player 1's image shows greater adherence to the prompt by clearly depicting an octopus with a top hat, monocle, and musical notes, capturing the whimsical theme effectively.
The color gradient and expressive tentacles add to the visual appeal and creativity.
In contrast, Player 2's image lacks clarity in representing the octopus and musical elements, making it less 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
"A snail with a cityscape of tiny buildings on its shell"
"Pirate cat on a unicycle juggling starfish"
"Dreamy cityscape inside a snow globe with a swirling galaxy background"
"Flying cactus in a top hat balancing on a unicycle with a desert sunset backdrop"
"Underwater circus with juggling octopus, tightrope starfish, and clownfish on unicycles"
"Meteor shower over a crystal desert"