Creative Challenge
"Floating teacup pouring stars into a tiny galaxy"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background: Tiny galaxy -->
<circle cx="150" cy="150" r="140" fill="navy" />
<circle cx="170" cy="180" r="5" fill="white" />
<circle cx="130" cy="120" r="3" fill="white" />
<circle cx="110" cy="210" r="4" fill="white" />
<circle cx="190" cy="240" r="6" fill="white" />
<!-- Floating teacup with stars -->
<path d="M100 100 Q120 50 140 100 Q160 150 180 100 Q200 50 220 100 Q240 150 260 100 Q240 150 220 200 Q200 250 180 200 Q160 150 140 200 Q120 250 100 200 Q80 150 80 100 Z" fill="transparent" stroke="brown" stroke-width="2" />
<path d="M140 100 Q130 70 120 100 Q110 130 100 100 Q90 70 80 100 Q70 130 60 100 Q70 130 80 160 Q90 190 100 160 Q110 130 120 160 Q130 190 140 160 Q150 130 160 160 Q170 190 180 160 Q170 130 160 100 Z" fill="yellow" />
<circle cx="150" cy="110" r="10" fill="white" />
<circle cx="130" cy="130" r="8" fill="white" />
<circle cx="170" cy="150" r="6" fill="white" />
<circle cx="190" cy="130" r="7" fill="white" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="galaxyGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#2b0054"/>
<stop offset="100%" style="stop-color:#7b287d"/>
</linearGradient>
<radialGradient id="teaGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#fff6e6"/>
<stop offset="100%" style="stop-color:#ffd699"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Galaxy Pool -->
<ellipse cx="150" cy="220" rx="100" ry="40" fill="url(#galaxyGrad)" filter="url(#glow)"/>
<!-- Teacup -->
<path d="M120,120 Q150,110 180,120 Q200,140 180,160 L160,180 Q150,185 140,180 L120,160 Q100,140 120,120"
fill="url(#teaGlow)" stroke="#d4a567" stroke-width="2"/>
<path d="M110,140 Q90,150 100,170 Q110,180 120,175" fill="none" stroke="#d4a567" stroke-width="4"/>
<!-- Star Stream -->
<path d="M150,170 Q150,200 150,220" fill="none" stroke="#fff" stroke-width="1" stroke-dasharray="2,3"/>
<!-- Stars -->
<g fill="#fff" filter="url(#glow)">
<circle cx="150" cy="180" r="2">
<animate attributeName="cy" values="180;220" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="148" cy="190" r="1.5">
<animate attributeName="cy" values="190;220" dur="1.8s" repeatCount="indefinite"/>
</circle>
<circle cx="152" cy="185" r="1">
<animate attributeName="cy" values="185;220" dur="2.2s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Galaxy Details -->
<g opacity="0.8">
<circle cx="150" cy="220" r="3" fill="#fff"/>
<circle cx="160" cy="225" r="2" fill="#fff"/>
<circle cx="140" cy="215" r="2" fill="#fff"/>
<path d="M100,220 Q150,200 200,220" stroke="#fff" fill="none" stroke-width="0.5"/>
<path d="M100,225 Q150,245 200,225" stroke="#fff" fill="none" stroke-width="0.5"/>
</g>
<!-- Sparkles -->
<g fill="#fff">
<circle cx="130" cy="190" r="1">
<animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
</circle>
<circle cx="170" cy="195" r="1">
<animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="185" r="1">
<animate attributeName="opacity" values="0;1;0" dur="1.8s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission more clearly adheres to the prompt by depicting a teacup pouring stars into a defined galaxy shape, demonstrating creativity and a cohesive composition.
The use of colors and gradients adds to the visual appeal, making it technically superior.
Player 1's image, while colorful, lacks clear representation of the teacup and galaxy theme, 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
"Dancing cactus with maracas under a disco ball"
"Frog in a tuxedo playing a tiny trumpet under a starry sky"
"Giraffe with a fishbowl necktie"
"A giraffe peeking through a keyhole into a treasure-filled room"
"Lemon-shaped UFO over a desert cactus"
"Bioluminescent jellyfish floating in a forest"