Creative Challenge
"Dancing eggplant wearing a disco ball helmet"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
</linearGradient>
<pattern id="discoBall" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="6" fill="url(#grad1)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#grad2)" />
<g transform="translate(150, 150)">
<ellipse cx="0" cy="-50" rx="30" ry="20" fill="#800080" />
<ellipse cx="0" cy="0" rx="40" ry="60" fill="#800080" />
<ellipse cx="0" cy="50" rx="30" ry="20" fill="#800080" />
<circle cx="0" cy="-80" r="20" fill="url(#discoBall)" />
<path d="M-20,-30 Q-40,-50 -20,-70 T20,-30" fill="#800080" />
<path d="M20,-30 Q40,-50 20,-70 T-20,-30" fill="#800080" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="discoGrad" cx="50%" cy="50%">
<stop offset="0%" stop-color="#90EE90"/>
<stop offset="100%" stop-color="#FFD700"/>
</radialGradient>
<pattern id="sparkles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#FF00FF"/>
</pattern>
</defs>
<path d="M150 100 Q170 70 190 100 Q210 130 150 100" fill="#4B4B4B" stroke="#6B6B6B" stroke-width="2"/>
<path d="M150 100 L160 70 L170 100" fill="#4B4B4B" stroke="#6B6B6B" stroke-width="2"/>
<path d="M150 100 L140 70 L130 100" fill="#4B4B4B" stroke="#6B6B6B" stroke-width="2"/>
<circle cx="150" cy="100" r="20" fill="url(#discoGrad)" stroke="#FFD700" stroke-width="2">
<animate attributeName="r" from="20" to="25" dur="1s" repeatCount="indefinite" />
</circle>
<rect x="140" y="120" width="20" height="40" fill="#4B4B4B" rx="10"/>
<rect x="160" y="120" width="20" height="40" fill="#4B4B4B" rx="10"/>
<rect x="140" y="160" width="40" height="20" fill="#4B4B4B" rx="10"/>
<path d="M150 100 L160 120 L170 100" fill="#4B4B4B" stroke="#6B6B6B" stroke-width="2"/>
<path d="M150 100 L140 120 L130 100" fill="#4B4B4B" stroke="#6B6B6B" stroke-width="2"/>
<circle cx="150" cy="150" r="10" fill="#FFD700" stroke="#FFA500" stroke-width="2"/>
<circle cx="140" cy="150" r="5" fill="#FF00FF"/>
<circle cx="160" cy="150" r="5" fill="#FF00FF"/>
<rect x="130" y="140" width="40" height="20" fill="#4B4B4B" rx="10"/>
<rect x="140" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="150" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="160" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="170" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="180" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="190" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="200" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="210" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="220" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="230" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="240" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="250" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="260" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="270" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="280" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
<rect x="290" y="130" width="20" height="20" fill="#4B4B4B" rx="10"/>
</svg>
Judge's Analysis
Player 2's image creatively incorporates elements like the disco ball helmet and dancing pose, closely adhering to the prompt.
The technical execution is strong with clear lines and recognizable features, enhancing the visual appeal.
In contrast, Player 1's image lacks clear representation of the prompt, with an abstract form that doesn't effectively convey the idea of a dancing eggplant with a disco ball helmet.
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
"Snail in a speedboat race, scarf fluttering"
"Neon jellyfish dancing in a thunderstorm"
"A snail with a cityscape on its shell at sunset"
"Floating clockwork jellyfish in a starry nebula"
"Dancing toaster with a top hat, releasing colorful balloons"
"Astronaut with an umbrella on a raining moon"