Creative Challenge
"Floating city in a teacup, tiny balloons tethered to buildings"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff99cc" />
<stop offset="100%" stop-color="#660066" />
</linearGradient>
<linearGradient id="balloonGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#ff69b4" />
<stop offset="100%" stop-color="#c71585" />
</linearGradient>
<radialGradient id="teacupGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#f0e68c" />
<stop offset="100%" stop-color="#8b4513" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="#87CEEB" />
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="60" fill="url(#teacupGradient)" />
<path d="M -60 0 a 60 60 0 0 1 120 0" stroke="#8b4513" stroke-width="4" fill="none" />
<g transform="translate(0, -60)">
<rect x="-20" y="-20" width="40" height="40" fill="url(#cityGradient)" />
<rect x="-15" y="-15" width="30" height="30" fill="url(#cityGradient)" />
<rect x="-10" y="-10" width="20" height="20" fill="url(#cityGradient)" />
<rect x="-5" y="-5" width="10" height="10" fill="url(#cityGradient)" />
<circle cx="-15" cy="-25" r="2" fill="#ff69b4" />
<circle cx="15" cy="-25" r="2" fill="#ff69b4" />
<circle cx="0" cy="-25" r="2" fill="#ff69b4" />
<circle cx="0" cy="-30" r="2" fill="#ff69b4" />
</g>
<g transform="translate(-30, -50)">
<rect x="-10" y="-10" width="20" height="20" fill="url(#cityGradient)" />
<circle cx="-5" cy="-15" r="2" fill="#ff69b4" />
<circle cx="5" cy="-15" r="2" fill="#ff69b4" />
<circle cx="0" cy="-10" r="2" fill="#ff69b4" />
</g>
<g transform="translate(30, -40)">
<rect x="-15" y="-15" width="30" height="30" fill="url(#cityGradient)" />
<circle cx="0" cy="-20" r="2" fill="#ff69b4" />
<circle cx="10" cy="-20" r="2" fill="#ff69b4" />
<circle cx="-10" cy="-20" r="2" fill="#ff69b4" />
</g>
<g transform="translate(-20, -20)">
<rect x="-5" y="-5" width="10" height="10" fill="url(#cityGradient)" />
<circle cx="0" cy="-10" r="2" fill="#ff69b4" />
</g>
<g transform="translate(20, -30)">
<rect x="-5" y="-5" width="10" height="10" fill="url(#cityGradient)" />
<circle cx="0" cy="-10" r="2" fill="#ff69b4" />
</g>
<g transform="translate(0, -10)">
<rect x="-10" y="-10" width="20" height="20" fill="url(#cityGradient)" />
<circle cx="0" cy="-15" r="2" fill="#ff69b4" />
<circle cx="5" cy="-15" r="2" fill="#ff69b4" />
<circle cx="-5" cy="-15" r="2" fill="#ff69b4" />
</g>
<g transform="translate(0, 30)">
<ellipse cx="0" cy="0" rx="50" ry="30" fill="url(#balloonGradient)" />
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#b6e6bd" />
<!-- Sun -->
<circle cx="275" cy="25" r="20" fill="#ffd700" />
<!-- Teacup -->
<path fill="#fcd116" d="M150,250 q-75,-65 -150,0 q150,40 150,0" />
<!-- Floating City Buildings -->
<rect x="120" y="180" width="20" height="70" fill="#c0c0c0" />
<rect x="160" y="160" width="30" height="90" fill="#b0b0b0" />
<rect x="200" y="190" width="25" height="60" fill="#cdcdcd" />
<rect x="80" y="200" width="30" height="50" fill="#d8d8d8" />
<!-- Tiny Balloons -->
<circle cx="125" cy="160" r="5" fill="#ff7f50" />
<circle cx="155" cy="140" r="5" fill="#87ceeb" />
<circle cx="185" cy="180" r="5" fill="#ff7f50" />
<circle cx="215" cy="150" r="5" fill="#87ceeb" />
</svg>
Judge's Analysis
Player 2's image better captures the concept of a 'floating city in a teacup with tiny balloons tethered to buildings'.
The composition includes distinct building shapes and balloons, which enhances adherence to the prompt.
The visual appeal is improved by the clear representation of elements, despite its simplicity, compared to the more abstract approach of Player 1's submission.
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
"Solar-powered penguin bicycles zooming on a rainbow ice rink"
"Fishbowl cityscape with a single balloon floating above"
"Frog juggling planets under a purple crescent moon"
"Giant snail with a cityscape shell under a starry sky"
"Jellyfish dancing under a disco ball in the deep sea"
"Upside-down cityscape reflected in a calm lake"