Creative Challenge
"A teapot pouring stars into a night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#120a28;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#0a1228;stop-opacity:1"/>
</linearGradient>
<radialGradient id="teapotGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#c39bd3;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#a855f7;stop-opacity:1"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Teapot -->
<path d="M150,200 Q180,200 200,180 L200,120 Q200,100 180,80 Q160,60 140,80 Q120,100 120,120 L120,180 Q100,200 130,220 L150,240 L170,220 Q200,200 150,200"
fill="url(#teapotGradient)" stroke="#9c27b0" stroke-width="2"/>
<!-- Handle -->
<path d="M120,150 L100,170 Q90,180 100,190 L120,210" fill="#9c27b0"/>
<!-- Lid -->
<rect x="140" y="180" width="20" height="5" fill="#9c27b0" transform="rotate(45 140 180)"/>
<!-- Steam/Stars -->
<g filter="url(#glow)">
<circle cx="180" cy="160" r="4" fill="#fff"/>
<circle cx="185" cy="155" r="3" fill="#fff" opacity="0.8"/>
<circle cx="190" cy="150" r="2" fill="#fff" opacity="0.6"/>
<circle cx="195" cy="145" r="1" fill="#fff" opacity="0.4"/>
</g>
<!-- Stars -->
<g opacity="0.8">
<circle cx="50" cy="50" r="1" fill="url(#starGradient)"/>
<circle cx="100" cy="70" r="1.5" fill="url(#starGradient)"/>
<circle cx="150" cy="40" r="2" fill="url(#starGradient)"/>
<circle cx="200" cy="60" r="1.5" fill="url(#starGradient)"/>
<circle cx="250" cy="30" r="1" fill="url(#starGradient)"/>
</g>
<!-- Ground -->
<path d="M0,280 Q150,290 300,280 L300,300 L0,300" fill="#061228"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Night Sky -->
<rect x="0" y="0" width="300" height="300" fill="#212121" />
<linearGradient id="starlight" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#3498db" />
<stop offset="100%" stop-color="#f1c40f" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#starlight)" opacity="0.5" />
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="5" fill="#fff" />
<circle cx="150" cy="100" r="3" fill="#fff" />
<circle cx="200" cy="50" r="2" fill="#fff" />
<circle cx="250" cy="150" r="4" fill="#fff" />
<circle cx="100" cy="200" r="6" fill="#fff" />
<circle cx="180" cy="250" r="5" fill="#fff" />
</g>
<!-- Teapot -->
<g id="teapot" transform="translate(100, 100)">
<path d="M 0,0 C 50,50 100,0 150,50 C 200,100 250,50 300,0" fill="#8e44ad" />
<circle cx="150" cy="50" r="20" fill="#8e44ad" />
<path d="M 150,70 L 150,120" stroke="#8e44ad" stroke-width="10" />
<circle cx="150" cy="120" r="10" fill="#8e44ad" />
</g>
<!-- Pouring Stars -->
<g id="pouring-stars">
<path d="M 150,120 C 180,150 200,180 220,200" fill="none" stroke="#fff" stroke-width="2" />
<circle cx="220" cy="200" r="10" fill="#fff" />
<path d="M 220,200 C 240,220 260,240 280,260" fill="none" stroke="#fff" stroke-width="2" />
<circle cx="280" cy="260" r="10" fill="#fff" />
</g>
<!-- Animation -->
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="10s" repeatCount="indefinite" xlink:href="#teapot" />
<animateTransform attributeName="transform" type="translate" from="0 0" to="20 20" dur="5s" repeatCount="indefinite" xlink:href="#pouring-stars" />
</svg>
Judge's Analysis
Player 1's image creatively represents the idea of pouring stars into a night sky with the use of a stylized teapot shape in a visually appealing purple hue.
The subtle gradation and star elements suggest a connection to the night sky, adhering well to the prompt.
Player 2's image failed to load, providing no visual content 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
"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"