Creative Challenge
"Floating teapot pouring stars into a crescent moon cup"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="teapotGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#6A5ACD"/>
<stop offset="100%" stop-color="#483D8B"/>
</radialGradient>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFF8DC"/>
<stop offset="100%" stop-color="#F0E68C"/>
</linearGradient>
<linearGradient id="streamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FFD700" stop-opacity="1"/>
<stop offset="100%" stop-color="#FFA500" stop-opacity="0.5"/>
</linearGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="2" cy="2" r="2" fill="#FFF"/>
</pattern>
<radialGradient id="backgroundGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#191970"/>
<stop offset="100%" stop-color="#000080"/>
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<!-- Crescent Moon Cup -->
<path d="M150,220
C130,200 170,200 150,220
C160,220 140,260 150,260
C160,260 140,260 150,260
Z"
fill="url(#moonGradient)" stroke="#F0E68C" stroke-width="2" />
<!-- Teapot Body -->
<g transform="translate(150,100)">
<path d="M0,-40
C-20,-40 -30,-20 -20,0
C-10,20 10,20 20,0
C30,-20 20,-40 0,-40 Z"
fill="url(#teapotGradient)" stroke="#2F4F4F" stroke-width="2"/>
<!-- Teapot Spout -->
<path d="M20,-10
C30,-15 40,-5 30,0
C40,5 30,15 20,10"
fill="url(#teapotGradient)" stroke="#2F4F4F" stroke-width="2"/>
<!-- Teapot Handle -->
<path d="M-15,-30
C-25,-25 -25,-15 -15,-10
C-10,-5 -10,5 -15,10
C-25,15 -25,25 -15,30"
fill="none" stroke="#2F4F4F" stroke-width="2"/>
</g>
<!-- Stream of Stars -->
<g>
<path d="M150,100
C160,120 140,140 150,160"
fill="none" stroke="url(#streamGradient)" stroke-width="2" stroke-linecap="round" />
<!-- Stars along the stream -->
<circle cx="155" cy="120" r="2" fill="#FFF" />
<circle cx="145" cy="130" r="2" fill="#FFF" />
<circle cx="155" cy="140" r="2" fill="#FFF" />
<circle cx="145" cy="150" r="2" fill="#FFF" />
<circle cx="155" cy="160" r="2" fill="#FFF" />
</g>
<!-- Floating Stars -->
<g>
<circle cx="60" cy="50" r="2" fill="#FFF" />
<circle cx="240" cy="80" r="1.5" fill="#FFF" />
<circle cx="200" cy="40" r="2.5" fill="#FFF" />
<circle cx="100" cy="20" r="1.8" fill="#FFF" />
<circle cx="280" cy="150" r="2" fill="#FFF" />
<circle cx="30" cy="200" r="1.5" fill="#FFF" />
<circle cx="270" cy="220" r="2" fill="#FFF" />
</g>
<!-- Glow around the moon cup -->
<radialGradient id="glow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFACD" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#FFFACD" stop-opacity="0"/>
</radialGradient>
<ellipse cx="150" cy="240" rx="30" ry="10" fill="url(#glow)" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Background Gradient -->
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a1a2e;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#0f3460;stop-opacity:1"/>
</linearGradient>
<!-- Teapot Gradient -->
<radialGradient id="teapotGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1"/>
</radialGradient>
<!-- Teapot Glow -->
<radialGradient id="teapotGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:0.5"/>
<stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0"/>
</radialGradient>
<!-- Star Gradient -->
<linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:1"/>
</linearGradient>
<!-- Moon Gradient -->
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#EEEEFF;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#8A2BE2;stop-opacity:1"/>
</radialGradient>
<!-- Star Symbol -->
<symbol id="star" viewBox="0 0 20 20">
<polygon points="10,2 12.4,6.8 17.6,7.5 13.8,11.2 14.7,16.5 10,14 5.3,16.5 6.2,11.2 2.4,7.5 7.6,6.8" fill="url(#starGradient)" stroke="#FFD700" stroke-width="0.5"/>
</symbol>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)"/>
<!-- Floating Teapot -->
<g id="teapot" transform="translate(40,40)">
<circle cx="80" cy="80" r="50" fill="url(#teapotGlow)"/>
<ellipse cx="80" cy="80" rx="40" ry="30" fill="url(#teapotGradient)" stroke="#333" stroke-width="2"/>
<path d="M120,80 Q150,75 160,90 Q155,95 130,90" fill="url(#teapotGradient)" stroke="#333" stroke-width="2"/>
<ellipse cx="70" cy="50" rx="20" ry="8" fill="#555" stroke="#333" stroke-width="2"/>
<circle cx="70" cy="50" r="3" fill="#333"/>
<path d="M40,80 Q20,60 40,100" fill="none" stroke="#333" stroke-width="3" stroke-linecap="round"/>
</g>
<!-- Stars Pouring -->
<g id="stars">
<use href="#star" transform="translate(190,120) scale(0.8) rotate(-10,10,10)"/>
<use href="#star" transform="translate(205,130) scale(0.6) rotate(15,10,10)"/>
<use href="#star" transform="translate(225,145) scale(0.9) rotate(5,10,10)"/>
<use href="#star" transform="translate(245,160) scale(1) rotate(-20,10,10)"/>
<use href="#star" transform="translate(255,180) scale(0.7) rotate(30,10,10)"/>
</g>
<!-- Crescent Moon Cup -->
<g id="moon-cup">
<path fill-rule="evenodd" d="M240,210 m -40,0 a40,40 0 1,0 80,0 a40,40 0 1,0 -80,0 M240,200 m -35,0 a35,35 0 1,1 70,0 a35,35 0 1,1 -70,0" fill="url(#moonGradient)" stroke="#FFD700" stroke-width="2"/>
</g>
</svg>
Judge's Analysis
Player 2's submission exhibits more creativity and adheres closely to the prompt with a clear depiction of a teapot pouring into a crescent moon cup.
The use of vibrant colors and a dynamic composition enhances visual appeal.
Player 1's image is more abstract and lacks clear representation of the prompt elements, diminishing its impact.
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
"Cat wearing a suit, sipping tea on a floating lily pad"
"A cyberpunk octopus playing a violin"
"A geometric tree house shaped like a giant teapot"
"Flying fish with butterfly wings above a cityscape at sunset"
"Singing cacti wearing sunglasses under a disco ball in the desert"
"A giraffe in a space helmet, floating among stars with a lollipop"