Creative Challenge
"Flying teapot pouring stars into a crescent moon-shaped cup"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,0,255);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
</linearGradient>
</defs>
<path d="M150,50 Q175,15 200,50 T250,50 Q275,15 300,50 T150,50" stroke="black" stroke-width="2" fill="url(#grad1)" />
<path d="M150,50 Q125,15 100,50 T50,50 Q25,15 0,50 T150,50" stroke="black" stroke-width="2" fill="url(#grad1)" />
<circle cx="150" cy="100" r="30" fill="url(#grad2)" stroke="black" stroke-width="2" />
<path d="M150,150 Q175,100 200,150 T250,150 Q275,100 300,150 T150,150" stroke="black" stroke-width="2" fill="none" />
<path d="M150,150 Q125,100 100,150 T50,150 Q25,100 0,150 T150,150" stroke="black" stroke-width="2" fill="none" />
<path d="M150,250 Q175,200 200,250 T250,250 Q275,200 300,250 T150,250" stroke="black" stroke-width="2" fill="url(#grad1)" />
<circle cx="150" cy="200" r="20" fill="url(#grad2)" stroke="black" stroke-width="2" />
<g transform="translate(150, 150) rotate(-45)">
<path d="M-10,0 L10,0 A10,10 0 0 1 10,-10 L-10,-10 A10,10 0 0 1 -10,0" fill="url(#grad2)" stroke="black" stroke-width="2" />
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0" to="360" dur="5s" repeatCount="indefinite" />
</g>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="5" fill="white" stroke="black" stroke-width="1" />
<animateMotion dur="5s" repeatCount="indefinite">
<mpath xlink:href="#starPath"/>
</animateMotion>
</g>
<path id="starPath" d="M-50,0 C-20,20 20,20 50,0" fill="none" stroke="none" />
<path d="M150,250 C120,280 180,280 150,250" stroke="white" stroke-width="2" fill="none" />
<path d="M150,250 C120,220 180,220 150,250" stroke="white" stroke-width="2" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="teapot-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffcc00; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff6699; stop-opacity:1" />
</linearGradient>
<radialGradient id="star-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc00; stop-opacity:1" />
</radialGradient>
<filter id="glow">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<g transform="translate(50, 50)">
<path d="M120 60 C140 40, 180 40, 200 60 Q230 80, 210 120 L120 60Z" fill="url(#teapot-gradient)" />
<path d="M120 60 L80 100 Q50 120, 70 160 L120 130 Q90 100, 120 60Z" fill="#ff9999" />
<circle cx="175" cy="65" r="10" fill="black" />
<path d="M180 70 Q190 80, 160 90 Q175 85, 180 70Z" fill="#ff4d4d" />
<path d="M100 115 A40 40 0 0 1 140 115 Q130 150 90 140 A20 20 0 0 0 70 130 Q80 160 100 115Z" fill="#ffe6cc" />
</g>
<g transform="translate(150, 200)">
<path d="M0 -30 A45 45 0 1 1 0 30 Q-50 0 0 0 Q50 0 0 -30Z" fill="#666699" />
<path d="M0 -30 Q-65 -35 -50 -5 Q-50 0 -70 0 Q-45 15 -20 15 Q-30 0 0 -30Z" fill="#ccffcc" />
</g>
<g filter="url(#glow)">
<g fill="url(#star-gradient)">
<circle cx="154" cy="30" r="5" />
<circle cx="140" cy="15" r="3" />
<circle cx="160" cy="50" r="4" />
<circle cx="174" cy="20" r="2" />
<circle cx="180" cy="40" r="3" />
<circle cx="150" cy="10" r="4" />
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission creatively interprets the prompt with vibrant colors and a clear depiction of a teapot pouring stars into a crescent moon-shaped cup.
The composition is visually appealing and technically well-executed, effectively capturing the whimsical theme.
Player 1's image was not available for evaluation.
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 in a spacesuit floating above a moonlit ocean"
"Lonely penguin on a flamingo float in a desert oasis"
"Chameleon blending into a giant cosmic snail shell"
"A jellyfish cityscape at sunset"
"Giraffe in a scuba suit diving for coral in a colorful reef"
"Giraffe juggling planets in a cosmic circus ring"