Creative Challenge
"A penguin wearing a crown, juggling fish under a disco ball"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="discoGlow" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#2b1055"/>
<stop offset="100%" stop-color="#1a0630"/>
</radialGradient>
<linearGradient id="crownGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="50%" stop-color="#FFEA00"/>
<stop offset="100%" stop-color="#FFD700"/>
</linearGradient>
<pattern id="discoTiles" patternUnits="userSpaceOnUse" width="8" height="8">
<rect width="8" height="8" fill="#fff"/>
<circle cx="4" cy="4" r="1.5" fill="rgba(255,255,255,0.3)"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#discoGlow)"/>
<!-- Disco Ball -->
<g transform="translate(150 40)">
<circle r="25" fill="url(#discoTiles)"/>
<path d="M-25 0L25 0M0-25L0 25" stroke="white" stroke-opacity="0.2"/>
<g stroke="white" stroke-width="2" opacity="0.3">
<line x1="-35" y1="-35" x2="35" y2="35"/>
<line x1="35" y1="-35" x2="-35" y2="35"/>
</g>
</g>
<!-- Penguin -->
<g transform="translate(150 220)">
<path d="M-40 0A40 60 0 0 1 40 0V50A40 20 0 0 1-40 50Z" fill="#333"/>
<ellipse cx="0" cy="-20" rx="30" ry="50" fill="#fff"/>
<circle cx="-15" cy="-40" r="8" fill="#333"/>
<circle cx="15" cy="-40" r="8" fill="#333"/>
<circle cx="-12" cy="-38" r="3" fill="#fff"/>
<circle cx="18" cy="-38" r="3" fill="#fff"/>
<!-- Crown -->
<g transform="translate(0 -75)">
<path d="M-25 0L0-20 25 0 15 20H-15Z" fill="url(#crownGrad)"/>
<circle cx="-15" cy="5" r="3" fill="#FF4081"/>
<circle cx="0" cy="5" r="3" fill="#4CAF50"/>
<circle cx="15" cy="5" r="3" fill="#2196F3"/>
</g>
</g>
<!-- Juggling Fish -->
<g stroke-width="2">
<g transform="translate(110 120) rotate(-20)">
<path d="M0 0Q15-15 30 0 25 10 0 10-25 10-30 0-15-15 0 0" fill="#FF5252"/>
<path d="M28 2L35 0 30 5" fill="none" stroke="#FFD180"/>
</g>
<g transform="translate(150 90)">
<path d="M0 0Q15-15 30 0 25 10 0 10-25 10-30 0-15-15 0 0" fill="#40C4FF"/>
<path d="M28 2L35 0 30 5" fill="none" stroke="#B2FF59"/>
</g>
<g transform="translate(190 120) rotate(20)">
<path d="M0 0Q15-15 30 0 25 10 0 10-25 10-30 0-15-15 0 0" fill="#FFD740"/>
<path d="M28 2L35 0 30 5" fill="none" stroke="#FF80AB"/>
</g>
</g>
<!-- Sparkles -->
<g fill="#fff" opacity="0.8">
<circle cx="80" cy="60" r="1.5"/>
<circle cx="220" cy="90" r="2"/>
<circle cx="170" cy="40" r="1.2"/>
<path d="M145 55l2-2 2 2-2 2z" transform="rotate(45 145 55)"/>
</g>
</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="#0B3954" />
<!-- Disco Ball -->
<circle cx="150" cy="100" r="80" fill="#A9A9A9" />
<circle cx="150" cy="100" r="70" fill="none" stroke="#000" stroke-width="2" />
<circle cx="150" cy="100" r="60" fill="#808080" />
<circle cx="150" cy="100" r="10" fill="#CDCDCD" />
<!-- Crown -->
<path d="M100 30 L120 70 L150 50 L180 70 L200 30 Z" fill="#FFD700" />
<rect x="118" y="31" width="64" height="20" fill="#FFD700" />
<!-- Penguin Body -->
<circle cx="150" cy="200" r="50" fill="#000" />
<circle cx="150" cy="180" r="40" fill="#000" />
<!-- Penguin Eyes -->
<circle cx="130" cy="180" r="5" fill="#FFF" />
<circle cx="170" cy="180" r="5" fill="#FFF" />
<!-- Penguin Beak -->
<polygon points="143,190 157,190 150,200" fill="orange" />
<!-- Fish -->
<path d="M90 240 Q110 210 130 240 Q150 210 170 240 Q190 210 210 240 L185 250 Q190 230 210 225 Q190 220 185 240 Z" fill="#FF6347" />
<!-- Juggling Ball -->
<circle cx="120" cy="250" r="15" fill="#F08080" />
<!-- Juggling Trajectory -->
<path d="M120 250 Q135 230 150 250 Q165 230 180 250" fill="none" stroke="#F08080" stroke-width="2" />
</svg>
Judge's Analysis
Player 1's image closely adheres to the prompt with a clear depiction of a penguin wearing a crown, actively juggling colorful fish under a disco ball.
The composition is dynamic and vibrant, enhancing the visual appeal.
Player 2's image, while creative, lacks the clear juggling action and the disco ball effect, making Player 1's submission more aligned with the task.
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 fishbowl blending into a city skyline at dusk"
"Melting clock tower sprouting flowers"
"Moonlit jellyfish with skyscraper reflections in the water"
"A snail in a space helmet orbiting a giant sunflower"
"A giraffe wearing a tuxedo juggling three flamingos"