Creative Challenge
"A cyberpunk octopus playing a violin"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradient-body" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#800080" />
<stop offset="50%" stop-color="#4B0082" />
<stop offset="100%" stop-color="#000080" />
</linearGradient>
<pattern id="circuit-pattern" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0 0h5v5H0zM5 5h5v5H5z" fill="#00FF00" stroke="#008000" stroke-width="0.5"/>
</pattern>
</defs>
<circle cx="150" cy="200" r="50" fill="url(#gradient-body)" />
<g transform="translate(150, 150)">
<path d="M-40 -20c-10 10 -20 20 -20 40s10 30 20 40" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
<path d="M40 -20c10 10 20 20 20 40s-10 30 -20 40" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
<path d="M-30 50c-5 15 -10 30 -5 45" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
<path d="M30 50c5 15 10 30 5 45" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
<path d="M0 50c0 15 0 30 -5 40" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
<path d="M-10 80c-3 5 -7 10 -10 15" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
<path d="M10 80c3 5 7 10 10 15" fill="none" stroke="url(#circuit-pattern)" stroke-width="5"/>
</g>
<path d="M50 50c0-20 40-20 40 0s20 30 40 30" fill="none" stroke="#FFD700" stroke-width="5"/>
<rect x="70" y="30" width="10" height="60" fill="#FFD700"/>
<polygon points="90,40 120,60 90,80" fill="#FF69B4"/>
<ellipse cx="80" cy="20" rx="15" ry="10" fill="#4169E1"/>
<ellipse cx="90" cy="20" rx="15" ry="10" fill="#4B0082"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with subtle gradient and noise effect -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Octopus body with metallic gradient -->
<ellipse cx="150" cy="220" rx="40" ry="30" fill="url(#metalGradient)" />
<!-- Glowing tentacles -->
<path d="M150,220 Q160,200 190,190 Q220,180 250,190 Q280,200 270,220"
fill="none" stroke="url(#tentacleGlow)" stroke-width="4" opacity="0.8"/>
<path d="M150,220 Q140,200 110,190 Q80,180 70,190 Q40,200 130,220"
fill="none" stroke="url(#tentacleGlow)" stroke-width="4" opacity="0.8"/>
<!-- Violin with glowing effects -->
<path d="M220,140 Q230,130 240,120 Q250,110 235,100 L235,90 Q235,80 225,70 L225,60 Q220,55 210,50 L210,40 Q200,35 190,30 L190,20 Q180,15 170,10 L170,5"
fill="none" stroke="url(#violinGlow)" stroke-width="2" />
<!-- Bow with gradient effect -->
<path d="M240,100 Q250,90 260,80 Q270,70 260,60" fill="none"
stroke="url(#bowGradient)" stroke-width="3" opacity="0.9"/>
<!-- Suckers on tentacles with pattern -->
<g transform="translate(180,180)">
<circle r="5" fill="url(#suckerPattern)" />
<animateMotion from="0,0" to="0,0" dur="2s" repeatCount="indefinite" />
</g>
<g transform="translate(120,180)">
<circle r="5" fill="url(#suckerPattern)" />
<animateMotion from="0,0" to="0,0" dur="2s" repeatCount="indefinite" />
</g>
<!-- Background effects -->
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1a1a1a" offset="0"/>
<stop stop-color="#0a0a0a" offset="1"/>
</linearGradient>
<radialGradient id="metalGradient" cx="150" cy="220" r="40"
gradientUnits="userSpaceOnUse">
<stop stop-color="#ff1a75" offset="0"/>
<stop stop-color="#ff0080" offset="1"/>
</radialGradient>
<linearGradient id="tentacleGlow" x1="0" y1="0" x2="1" y2="0">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#00ffff" offset="1"/>
</linearGradient>
<linearGradient id="violinGlow" x1="0" y1="0" x2="1" y2="0">
<stop stop-color="#00aaff" offset="0"/>
<stop stop-color="#0066ff" offset="1"/>
</linearGradient>
<linearGradient id="bowGradient" x1="0" y1="0" x2="1" y2="0">
<stop stop-color="#ff0044" offset="0"/>
<stop stop-color="#cc0000" offset="1"/>
</linearGradient>
<pattern id="suckerPattern" x="0" y="0" width="10" height="10"
patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#333" opacity="0.8"/>
</pattern>
</defs>
</svg>
Judge's Analysis
Player 1's submission captures the cyberpunk theme through the use of vibrant neon colors and geometric shapes, suggesting a futuristic aesthetic.
The octopus and violin elements are more distinguishable, adhering closely to the prompt.
Player 2's image, while visually interesting, lacks clarity in depicting the octopus and violin, making it less effective in terms of adherence to the theme.
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
"Rainbow-colored octopus painting the ocean with its tentacles"
"Wombats in top hats playing miniature violins under a glowing full moon"
"Alien ballerina gliding on a rainbow ringed Saturn"
"Octopus in a tuxedo juggling teacups over a coral ballet stage"
"Chameleon juggling colorful planets in space"
"An octopus wearing a monocle, juggling four teacups in a whirlpool"