Creative Challenge
"A teacup sailing through a starry sky, with clouds made of steam"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#001f3f;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0074D9;stop-opacity:1" />
</linearGradient>
<radialGradient id="teacupGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff9900;stop-opacity:1" />
</radialGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
<feFlood floodColor="#ffff00" floodOpacity="0.7" />
<feComposite in2="blur" operator="in" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(100, 150)">
<path d="M20,10 Q40,-10 60,10 L60,40 Q40,60 20,40 Z" fill="url(#teacupGradient)" filter="url(#glow)" />
<path d="M20,10 Q30,-15 40,-5 Q50,-15 60,10" fill="none" stroke="#ffffff" stroke-width="2" />
<path d="M20,40 Q40,45 60,40" fill="none" stroke="#ffffff" stroke-width="2" />
<path d="M-5,45 L65,45 Q60,55 15,55 Q-5,55 -5,45" fill="#ffcc00" />
<path d="M20,10 Q15,0 10,10 Q20,0 30,10 Q20,0 10,10" fill="none" stroke="#ffffff" stroke-width="2" />
</g>
<g>
<ellipse cx="90" cy="80" rx="30" ry="10" fill="#ffffff" opacity="0.5" />
<ellipse cx="80" cy="70" rx="10" ry="4" fill="#ffffff" opacity="0.5" />
<ellipse cx="110" cy="90" rx="25" ry="8" fill="#ffffff" opacity="0.5" />
</g>
<path d="M25,10 L0,40 Q20,20 25,25 Q30,30 25,35 Q25,25 20,30 Q15,35 35,25 Q40,22 25,10 Z" fill="#ffffff" opacity="0.7" />
<circle cx="250" cy="40" r="3" fill="#ffffb3" />
<circle cx="270" cy="80" r="5" fill="#ffffb3" />
<circle cx="230" cy="60" r="4" fill="#ffffb3" />
<circle cx="210" cy="30" r="6" fill="#ffffb3" />
<circle cx="250" cy="100" r="2" fill="#ffffb3" />
<circle cx="290" cy="50" r="3" fill="#ffffb3" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry sky background -->
<rect x="0" y="0" width="300" height="300" fill="#000" />
<circle cx="150" cy="150" r="120" fill="url(#grad1)" />
<defs>
<radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#000;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0043ff;stop-opacity:1" />
</radialGradient>
</defs>
<!-- Teacup -->
<!-- Handle -->
<path d="M 150 160 Q 130 130 110 160" fill="#fff" />
<!-- Cup -->
<path d="M 110 160 Q 150 100 190 160" fill="url(#grad2)" />
<defs>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff9f1c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff1c34;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Clouds made of steam -->
<circle cx="120" cy="100" r="20" fill="#fff" opacity="0.6" />
<circle cx="140" cy="80" r="25" fill="#fff" opacity="0.8" />
<circle cx="160" cy="110" r="20" fill="#fff" opacity="0.7" />
<circle cx="180" cy="90" r="25" fill="#fff" opacity="0.85" />
</svg>
Judge's Analysis
Player 1's image effectively portrays the concept of a teacup sailing through a starry sky, with visible steam-like clouds.
The composition includes clear elements like stars and clouds, adhering well to the prompt.
Player 2's image, while visually appealing, lacks clear representation of the teacup or starry sky, making it less aligned with the prompt.
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
"Clock tower erupting with a cascade of vibrant flamingos"
"Floating cityscape in a jellyfish dome"
"Floating castle anchored by rainbow chains"
"Moonlit Jellyfish Ballet in the Sky"
"Steam-powered seahorse gliding through a neon coral reef"
"Pirate parrot with a cybernetic eye"