Creative Challenge
"Floating tea cup island with waterfalls, in geometric style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF7F50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1" />
</linearGradient>
<linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4682B4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00BFFF;stop-opacity:1" />
</linearGradient>
<pattern id="waterPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0 0 Q5 5 10 0" stroke="#4169E1" stroke-width="1" fill="none"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#87CEEB"/>
<g transform="translate(150,150)">
<!-- Island base -->
<polygon points="-100,-100 -50,-150 50,-150 100,-100 0,0"
fill="url(#waterGradient)" stroke="#2F4F4F" stroke-width="2"/>
<!-- Tea cup -->
<path d="M0,-80 Q40,-80 80,-40 L80,20 Q80,60 40,80 Q0,80 -40,60 Q-80,20 -80,-40 L-40,-40 Q0,-40 0,-80 Z"
fill="url(#cupGradient)" stroke="#CD5C5C" stroke-width="4"/>
<!-- Handle -->
<rect x="60" y="-20" width="20" height="80" rx="5"
fill="#FF6B6B" stroke="#CD5C5C" stroke-width="2"/>
<!-- Waterfall 1 -->
<path d="M-100,-100 L-80,-120 Q-70,-130 -60,-120 L-50,-100"
fill="none" stroke="url(#waterGradient)" stroke-width="8"/>
<!-- Waterfall 2 -->
<path d="M100,-100 L80,-120 Q70,-130 60,-120 L50,-100"
fill="none" stroke="url(#waterGradient)" stroke-width="8"/>
<!-- Water ripples -->
<g opacity="0.5">
<circle cx="-30" cy="-30" r="15" fill="url(#waterPattern)"/>
<circle cx="30" cy="-30" r="15" fill="url(#waterPattern)"/>
</g>
<!-- Island details -->
<g transform="translate(0,50)">
<rect width="200" height="100" rx="20" fill="#90EE90"
stroke="#698B69" stroke-width="2"/>
<rect x="-50" y="-20" width="100" height="40" rx="10" fill="#8FBC8F"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Water Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" rx="10" />
<linearGradient id="water-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ADD8E6" />
<stop offset="100%" stop-color="#4682B4" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#water-gradient)" rx="10" opacity="0.5" />
<!-- Island -->
<polygon points="150,50 220,120 280,180 150,240 20,180 80,120" fill="#32CD32" />
<linearGradient id="island-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#3E8E41" />
<stop offset="100%" stop-color="#228B22" />
</linearGradient>
<polygon points="150,50 220,120 280,180 150,240 20,180 80,120" fill="url(#island-gradient)" opacity="0.5" />
<!-- Tea Cup -->
<ellipse cx="150" cy="80" rx="40" ry="30" fill="#F5F5DC" />
<linearGradient id="tea-cup-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FFF" />
<stop offset="100%" stop-color="#F0E4CC" />
</linearGradient>
<ellipse cx="150" cy="80" rx="40" ry="30" fill="url(#tea-cup-gradient)" opacity="0.5" />
<path d="M 120 60 L 180 60 L 170 100 L 130 100 Z" fill="#F5F5DC" />
<path d="M 140 80 L 160 80 L 150 110 Z" fill="#F5F5DC" />
<!-- Waterfalls -->
<path d="M 220 120 L 230 140 L 240 160 L 250 180" stroke="#4682B4" stroke-width="5" />
<path d="M 80 120 L 70 140 L 60 160 L 50 180" stroke="#4682B4" stroke-width="5" />
<circle cx="230" cy="140" r="5" fill="#4682B4" />
<circle cx="240" cy="160" r="5" fill="#4682B4" />
<circle cx="250" cy="180" r="5" fill="#4682B4" />
<circle cx="70" cy="140" r="5" fill="#4682B4" />
<circle cx="60" cy="160" r="5" fill="#4682B4" />
<circle cx="50" cy="180" r="5" fill="#4682B4" />
<!-- Geometric Patterns -->
<rect x="100" y="190" width="20" height="20" fill="#228B22" rx="5" />
<rect x="130" y="190" width="20" height="20" fill="#3E8E41" rx="5" />
<rect x="160" y="190" width="20" height="20" fill="#228B22" rx="5" />
<rect x="190" y="190" width="20" height="20" fill="#3E8E41" rx="5" />
<path d="M 110 210 L 130 230 L 150 210 Z" fill="#228B22" />
<path d="M 140 230 L 160 250 L 180 230 Z" fill="#3E8E41" />
<path d="M 170 210 L 190 230 L 210 210 Z" fill="#228B22" />
<path d="M 200 230 L 220 250 L 240 230 Z" fill="#3E8E41" />
</svg>
Judge's Analysis
Player 2's submission adheres more closely to the prompt with a clear depiction of a floating island and waterfalls in a geometric style.
The use of shapes to represent the island and the distinct placement of waterfalls adds to the visual appeal.
In contrast, Player 1's image lacks clarity and does not clearly convey the concept of a floating island or waterfalls.
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
"An astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"