Creative Challenge
"Floating teacup island with a waterfall of stars"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="skyGradient" cx="150" cy="300" r="300" fx="150" fy="150">
<stop offset="0%" stop-color="#1A2980" />
<stop offset="50%" stop-color="#26D0CE" />
<stop offset="100%" stop-color="#FF5733" />
</radialGradient>
<pattern id="starPattern" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="1" fill="white" />
</pattern>
<linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<path d="M100 150 C 100 120, 200 120, 200 150 L 200 180 C 200 180, 150 200, 150 180 C 150 160, 100 180, 100 180 Z" fill="url(#cupGradient)" stroke="brown" stroke-width="5" />
<path d="M150 180 L 150 250" stroke="url(#starPattern)" stroke-width="10" stroke-linecap="round" stroke-dasharray="2 4" />
<g transform="translate(150, 250)">
<animateTransform attributeName="transform" type="rotate" from="0 150 250" to="360 150 250" dur="10s" repeatCount="indefinite"/>
<g>
<circle cx="0" cy="0" r="2" fill="white" />
<circle cx="5" cy="5" r="2" fill="white" />
<circle cx="-5" cy="-5" r="2" fill="white" />
<circle cx="-5" cy="5" r="2" fill="white" />
<circle cx="5" cy="-5" r="2" fill="white" />
</g>
</g>
<path d="M50 50 C 60 40, 80, 40, 90 50 L 90 70 C 80 60, 60 60, 50 70 Z" fill="#90EE90" stroke="green" stroke-width="2" />
<ellipse cx="70" cy="80" rx="10" ry="5" fill="#CD5C5C" />
<path d="M70 80 C 70 90, 70 90, 70 90" stroke="#8B4513" stroke-width="2" stroke-linecap="round" />
<path d="M 220 70 C 230 60, 250 60, 260 70 L 260 90 C 250 80, 230 80, 220 90 Z" fill="#FA8072" stroke="#8B0000" stroke-width="2" />
</svg>
<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:#FFCCCB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF7F50;stop-opacity:1" />
</linearGradient>
<linearGradient id="waterfallGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFC0CB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8A2BE2;stop-opacity:1" />
</linearGradient>
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFFF00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="#87CEEB" />
<ellipse cx="150" cy="220" rx="90" ry="30" fill="#6B8E23" />
<g transform="translate(150,180)">
<path d="M0,-30 Q40,-50 80,-30 Q120,-20 40,0 Q0,-20 0,-30 Z" fill="url(#cupGradient)" />
<path d="M-10,-30 L-15,-40 L15,-40 L10,-30 Q0,-25 -10,-30 Z" fill="white" />
<path d="M-10,-30 Q-40,-45 -80,-30 Q-120,-20 -40,0 Q0,-20 -10,-30 Z" fill="url(#cupGradient)" />
</g>
<path d="M150,180 L150,300 Q160,280 140,280 Q150,260 150,180 Z" fill="url(#waterfallGradient)" />
<g fill="url(#starGradient)">
<circle cx="80" cy="80" r="3" />
<circle cx="120" cy="50" r="5" />
<circle cx="160" cy="90" r="4" />
<circle cx="200" cy="30" r="3" />
<circle cx="240" cy="70" r="6" />
<circle cx="260" cy="100" r="2" />
<circle cx="220" cy="120" r="3" />
<circle cx="180" cy="140" r="4" />
<circle cx="140" cy="160" r="3" />
</g>
<text x="150" y="50" text-anchor="middle" font-family="Verdana" font-size="20" fill="white">Floating Teacup Island</text>
</svg>
Judge's Analysis
Player 2's submission more clearly depicts the concept of a 'floating teacup island with a waterfall of stars'.
The presence of a teacup, floating elements, and star-like dots enhance the adherence to the prompt.
Additionally, it has a more cohesive color scheme and composition, making it visually appealing and technically superior.
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
"Two robotic flamingos waltzing on a moonlit pond"
"An octopus knitting a colorful scarf with pirate ship sails"
"Cartoon comet playing chess with a star in space"
"Galactic snail surfing on a rainbow wave"
"Tiny astronaut surfing on a giant slice of watermelon through space"
"Surrealist tree made entirely of cascading water streams, under a full moon"