Creative Challenge
"Bear in a business suit, balancing on a unicycle, holding an umbrella"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="suitGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#3498db" />
<stop offset="100%" stop-color="#2980b9" />
</linearGradient>
<radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#f1c40f" />
<stop offset="100%" stop-color="#e67e73" />
</radialGradient>
<pattern id="tiePattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#8e44ad" />
<path d="M 0 0 L 10 10" stroke="#8e44ad" stroke-width="2" />
</pattern>
</defs>
<g>
<rect x="95" y="150" width="110" height="120" fill="url(#suitGradient)" rx="10" />
<circle cx="150" cy="100" r="40" fill="#2ecc71" />
<g transform="translate(130, 70)">
<ellipse cx="0" cy="0" rx="15" ry="5" fill="#2ecc71" />
<ellipse cx="0" cy="20" rx="10" ry="5" fill="#2ecc71" />
</g>
<path d="M 140 100 C 120 80, 110 70, 100 70 C 90 70, 80 80, 70 100" stroke="#2ecc71" stroke-width="5" fill="none" />
<circle cx="170" cy="240" r="20" fill="url(#umbrellaGradient)" />
<path d="M 170 260 L 155 280 L 185 280 Z" fill="url(#umbrellaGradient)" />
<rect x="130" y="220" width="40" height="5" fill="#95a5a6" rx="2" />
<circle cx="110" cy="260" r="10" fill="#95a5a6" />
<g transform="translate(150, 240)">
<path d="M -10 0 L 0 10 L 10 0 Z" fill="#95a5a6" />
<path d="M -5 0 L 0 -5 L 5 0 Z" fill="#95a5a6" />
</g>
<rect x="145" y="190" width="60" height="5" fill="url(#tiePattern)" />
<path d="M 150 180 C 140 160, 145 150, 150 150 C 155 150, 150 160, 150 180" stroke="#8e44ad" stroke-width="2" fill="none" />
</g>
<circle cx="275" cy="25" r="25" fill="#e74c3c" />
<path d="M 250 20 L 300 20" stroke="#e74c3c" stroke-width="5" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="wheel" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" stop-color="#808080"/>
<stop offset="50%" stop-color="#606060"/>
<stop offset="100%" stop-color="#404040"/>
</radialGradient>
<linearGradient id="suit" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#222"/>
<stop offset="70%" stop-color="#333"/>
<stop offset="100%" stop-color="#444"/>
</linearGradient>
<pattern id="stripes" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="5" height="10" fill="#555"/>
</pattern>
</defs>
<circle cx="150" cy="220" r="20" fill="url(#wheel)" stroke="#333" stroke-width="2"/>
<rect x="140" y="200" width="20" height="20" fill="url(#suit)"/>
<path d="M 130,150 C 130,100 170,100 170,150 L 190,150 C 190,100 230,100 230,150" fill="#a62" stroke="#531" stroke-width="3"/>
<ellipse cx="150" cy="140" rx="30" ry="20" fill="#a62"/>
<circle cx="140" cy="130" r="5" fill="white"/>
<circle cx="160" cy="130" r="5" fill="white"/>
<path d="M 145 135 L 150 140 L 155 135" stroke="black" stroke-width="2"/>
<ellipse cx="150" cy="100" rx="20" ry="15" fill="#a62"/>
<rect x="100" y="150" width="100" height="50" fill="url(#suit)"/>
<path d="M 90 130 L 70 50 L 230 50 L 210 130 Z" fill="#6c2d23" stroke="black" stroke-width="3"/>
<path d="M 105 50 L 105 30 L 115 30 L 115 50 Z" fill="url(#stripes)"/>
<path d="M 125 50 L 125 25 L 135 25 L 135 50 Z" fill="url(#stripes)"/>
<path d="M 145 50 L 145 35 L 155 35 L 155 50 Z" fill="url(#stripes)"/>
<path d="M 165 50 L 165 20 L 175 20 L 175 50 Z" fill="url(#stripes)"/>
<path d="M 185 50 L 185 30 L 195 30 L 195 50 Z" fill="url(#stripes)"/>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt, clearly depicting a bear in a business suit on a unicycle.
The use of shapes and colors effectively communicates the concept, and the umbrella is distinctly visible, enhancing the visual appeal.
Player 1's image is more abstract and lacks clear elements of the prompt such as the unicycle and umbrella.
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 giraffe wearing roller skates juggling flaming torches"
"Octopus juggling planets under a disco ball in deep space"
"Surreal clock melting over a cactus in desert, vibrant colors, geometric style"
"Floating city of balloons over a giant sunflower field, in vibrant pop art style"
"A flamingo in a spacesuit playing the electric guitar on the moon"
"Cactus in a fishbowl with a tiny sailboat floating between its spines"