Creative Challenge
"Floating umbrella island with a waterfall pouring into a teacup"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Sky Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#F0F8FF;stop-opacity:1" />
</linearGradient>
<!-- Waterfall Pattern -->
<pattern id="waterfallPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="white" />
</pattern>
</defs>
<!-- Floating Island -->
<g transform="translate(150, 80)">
<ellipse cx="0" cy="0" rx="80" ry="20" fill="#4169E1" />
<path d="M-80,0 Q0,-40 80,0 Q0,40 -80,0 Z" fill="#228B22" />
<!-- Umbrella -->
<path fill="#FF6347" d="M-30,0 C-15,-20 15,-20 30,0 Z" />
<rect x="-5" y="0" width="10" height="60" fill="#8B4513" />
</g>
<!-- Teacup -->
<g transform="translate(220, 260)">
<path d="M-40,0 A40,20 0 0,1 40,0 L30,20 A20,10 0 0,1 -30,20 Z" fill="#FFFAF0" />
<ellipse cx="0" cy="15" rx="30" ry="10" fill="#CD853F" />
<circle cx="60" cy="0" r="7" fill="none" stroke="#CD853F" stroke-width="4" />
</g>
<!-- Waterfall -->
<path d="M150,90 Q170,160 220,245" stroke="url(#waterGradient)" stroke-width="12" fill="none" />
<g mask="url(#waterfallPattern)">
<path d="M150,90 Q170,160 220,245" stroke="white" stroke-width="4" fill="none" opacity="0.7" />
</g>
<!-- Additional Water Effects -->
<path d="M159,95 Q180,160 215,240" stroke="#00BFFF" stroke-width="4" fill="none" opacity="0.5" />
<path d="M151,100 Q167,155 225,245" stroke="#87CEFA" stroke-width="3" fill="none" opacity="0.6" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Define gradients -->
<defs>
<linearGradient id="umbrellaGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#f39c12;stop-opacity:1" />
<stop offset="100%" style="stop-color:#e74c3c;stop-opacity:1" />
</linearGradient>
<radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#27ae60;stop-opacity:1" />
<stop offset="100%" style="stop-color:#145a32;stop-opacity:1" />
</radialGradient>
<linearGradient id="waterfallGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#3498db;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2980b9;stop-opacity:1" />
</linearGradient>
<linearGradient id="teacupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ecf0f1;stop-opacity:1" />
<stop offset="100%" style="stop-color:#bdc3c7;stop-opacity:1" />
</linearGradient>
<pattern id="umbrellaPattern" width="4" height="4" patternUnits="userSpaceOnUse">
<path d="M0,0 L4,4 M4,0 L0,4" stroke="#ffffff" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Floating umbrella island -->
<g id="umbrella-island" transform="translate(150,70)">
<!-- Umbrella canopy -->
<path d="M -60,0
C -40,-40, 40,-40, 60,0
C 40,10, -40,10, -60,0 Z" fill="url(#umbrellaGradient)" stroke="#c0392b" stroke-width="2"/>
<rect x="-60" y="0" width="120" height="20" fill="url(#umbrellaPattern)" opacity="0.8" />
<!-- Island under the umbrella -->
<circle cx="0" cy="40" r="40" fill="url(#islandGradient)" stroke="#145a32" stroke-width="2"/>
<!-- Umbrella poles (spokes) -->
<line x1="0" y1="0" x2="0" y2="40" stroke="#7f8c8d" stroke-width="2"/>
<line x1="-30" y1="0" x2="-15" y2="40" stroke="#7f8c8d" stroke-width="2"/>
<line x1="30" y1="0" x2="15" y2="40" stroke="#7f8c8d" stroke-width="2"/>
</g>
<!-- Waterfall pouring from the umbrella downwards -->
<g id="waterfall">
<path d="M150,20
C 155,60, 145,100, 150,130
C 148,150, 152,170, 150,190"
fill="none" stroke="url(#waterfallGradient)" stroke-width="5" stroke-linecap="round" opacity="0.8"/>
</g>
<!-- Teacup at the bottom receiving the waterfall -->
<g id="teacup" transform="translate(100,190)">
<!-- Cup body -->
<path d="M0,0
Q50,-10,100,0
Q95,50,50,60
Q5,50,0,0 Z" fill="url(#teacupGradient)" stroke="#7f8c8d" stroke-width="2"/>
<!-- Cup handle -->
<path d="M100,10
C130,20,130,40,100,50" fill="none" stroke="#7f8c8d" stroke-width="4"/>
<!-- Water inside teacup -->
<path d="M15,10
Q50,5,85,10
Q80,30,50,35
Q20,30,15,10 Z" fill="url(#waterfallGradient)" opacity="0.7" stroke="none"/>
<!-- Teacup shadow for depth -->
<ellipse cx="50" cy="55" rx="40" ry="8" fill="#000" opacity="0.1"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is more visually appealing and technically refined, with a clear depiction of the concept.
The composition is well-balanced, with the umbrella seamlessly integrated into the island, and the waterfall flowing elegantly into the teacup.
Player 1's image, while creative, lacks the same level of detail and coherence in representing the idea.
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
"Giraffe in a UFO knitting a rainbow scarf"
"Sky-high jellyfish floating above a busy cityscape"
"A clock face made of melting candles"
"A giraffe with a fishbowl head, swimming in a jellybean sea"
"Giraffe on roller skates juggling flaming pizzas under a disco ball"
"Three-eyed cat juggling planets in a void"