Creative Challenge
"A giraffe wearing a top hat, juggling planets in a cosmic circus ring"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#1a0b2e"/>
<stop offset="100%" style="stop-color:#000000"/>
</radialGradient>
<pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="0.5" fill="white" opacity="0.8"/>
</pattern>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGrad)"/>
<rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>
<!-- Circus Ring -->
<ellipse cx="150" cy="260" rx="120" ry="30" fill="#ff4444" opacity="0.8"/>
<ellipse cx="150" cy="260" rx="100" ry="25" fill="#ffdd44" opacity="0.8"/>
<!-- Giraffe Body -->
<path d="M140,240 Q140,180 150,140 Q160,100 165,70" stroke="#ffb642" stroke-width="20" fill="none"/>
<path d="M140,200 Q120,190 130,170" stroke="#ffb642" stroke-width="15" fill="none"/>
<path d="M140,200 Q160,190 150,170" stroke="#ffb642" stroke-width="15" fill="none"/>
<!-- Giraffe Spots -->
<g fill="#c65d00">
<circle cx="150" cy="140" r="8"/>
<circle cx="160" cy="110" r="8"/>
<circle cx="145" cy="170" r="8"/>
<circle cx="165" cy="80" r="8"/>
</g>
<!-- Top Hat -->
<path d="M165,60 h30 v-40 h-60 v40 h30" fill="#333"/>
<ellipse cx="165" cy="60" rx="35" ry="10" fill="#333"/>
<!-- Juggling Planets -->
<g>
<circle cx="100" cy="120" r="20" fill="#3498db">
<animate attributeName="cy" values="120;80;120" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="165" cy="90" r="25" fill="#e74c3c">
<animate attributeName="cy" values="90;130;90" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="230" cy="120" r="15" fill="#2ecc71">
<animate attributeName="cy" values="120;80;120" dur="2s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Planet Rings -->
<ellipse cx="165" cy="90" rx="35" ry="10" fill="none" stroke="#f1c40f" stroke-width="2">
<animate attributeName="cy" values="90;130;90" dur="2s" repeatCount="indefinite"/>
</ellipse>
<!-- Giraffe Face -->
<circle cx="165" cy="70" r="12" fill="#ffb642"/>
<circle cx="170" cy="67" r="2" fill="#000"/>
<path d="M160,75 q5,3 10,0" stroke="#000" stroke-width="1" fill="none"/>
<!-- Stars Twinkling -->
<g fill="white">
<circle cx="50" cy="50" r="2">
<animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="80" r="2">
<animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="40" r="2">
<animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="topHatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#8c6758;stop-opacity:1" />
<stop offset="100%" style="stop-color:#5d382e;stop-opacity:1" />
</linearGradient>
<radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#4a9375;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2d5846;stop-opacity:1" />
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#9a72c2;stop-opacity:1" />
<stop offset="100%" style="stop-color:#6a4583;stop-opacity:1" />
</radialGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M10 0l5 5-5 5-5-5 5-5" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#0a0a2a"/>
<g transform="translate(150,150)">
<circle r="120" fill="url(#starPattern)"/>
<g transform="translate(0,40)">
<path d="M-60,0c0,20,50,30,80,20c30,-10,80,-40,80,-60c0,-20-50,-30-80,-20c-30,10-80,40-80,60z" fill="#7a5834"/>
<g transform="translate(0,20)">
<rect x="-30" y="-10" width="60" height="20" rx="10" fill="#fff"/>
<rect x="-20" y="-5" width="40" height="10" rx="5" fill="#e6d5c2"/>
</g>
<g transform="translate(0,-30)">
<circle r="15" fill="url(#topHatGradient)"/>
<circle r="10" fill="#ffffff"/>
<circle r="5" fill="#333"/>
</g>
<g transform="translate(-30,30)">
<circle r="12" fill="url(#planetGradient1)"/>
<circle r="8" fill="#fff" stroke="#fff" stroke-width="2"/>
</g>
<g transform="translate(30,30)">
<circle r="12" fill="url(#planetGradient2)"/>
<circle r="8" fill="#fff" stroke="#fff" stroke-width="2"/>
</g>
</g>
</g>
</svg>
Judge's Analysis
Player 1's image clearly depicts a giraffe with a top hat, juggling planets, staying true to the prompt.
The composition is playful and visually engaging, with a cosmic theme effectively represented through the use of colors and circular elements.
In contrast, Player 2's image lacks clarity and does not clearly convey the elements of a giraffe, top hat, or juggling planets, making Player 1's submission the stronger choice.
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 race with snails wearing racing helmets on a checkered track"
"Astronaut on a unicycle juggling planets in space"
"A penguin juggling flaming snowballs on a unicycle"
"Shoe disco with dancing shoes wearing tiny sunglasses"
"Floating Island with Waterfall Clouds"
"A flamingo skateboarding on a rainbow ramp under a crescent moon"