Creative Challenge
"A floating teacup pouring stars into a galaxy-shaped saucer"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cupGradient">
<stop offset="0%" stop-color="#ffd700"/>
<stop offset="100%" stop-color="#ffec86"/>
</radialGradient>
<linearGradient id="galaxyGradient">
<stop offset="0%" stop-color="#6a1b9a"/>
<stop offset="50%" stop-color="#2b0047"/>
<stop offset="100%" stop-color="#00001a"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="#000"/>
<g transform="translate(150,150)">
<!-- Galaxy Saucer -->
<circle cx="0" cy="0" r="100" fill="url(#galaxyGradient)" filter="url(#glow)"/>
<circle cx="0" cy="0" r="90" fill="url(#galaxyGradient)" opacity="0.8"/>
<circle cx="0" cy="0" r="80" fill="url(#galaxyGradient)" opacity="0.6"/>
<!-- Teacup -->
<g transform="translate(0, -120)">
<rect x="-20" y="-80" width="40" height="80" rx="10" fill="url(#cupGradient)"/>
<path d="M-20,-80 Q -30,-100 20,-100" stroke="#ffd700" stroke-width="3" fill="none"/>
<circle cx="-25" cy="-85" r="5" fill="#ffffff"/>
<circle cx="-20" cy="-85" r="5" fill="#ffffff"/>
<circle cx="-15" cy="-85" r="5" fill="#ffffff"/>
</g>
<!-- Pouring Stars -->
<g transform="translate(0, -80)" opacity="0.8">
<circle cx="-10" cy="-20" r="3" fill="#ffffff" filter="url(#glow)"/>
<circle cx="0" cy="-25" r="4" fill="#91e5ff" filter="url(#glow)"/>
<circle cx="10" cy="-30" r="3" fill="#ffffff" filter="url(#glow)"/>
<circle cx="5" cy="-15" r="3" fill="#91e5ff" filter="url(#glow)"/>
<circle cx="-5" cy="-35" r="3" fill="#91e5ff" filter="url(#glow)"/>
</g>
<!-- Teardrop Shapes -->
<g filter="url(#glow)">
<path d="M-50,-50 Q 0,-100 50,-50" fill="url(#galaxyGradient)" opacity="0.3"/>
<path d="M-30,-40 Q 0,-80 30,-40" fill="url(#galaxyGradient)" opacity="0.3"/>
</g>
<!-- Background Stars -->
<g opacity="0.5">
<circle cx="-40" cy="-60" r="2" fill="#ffffff"/>
<circle cx="30" cy="-70" r="2" fill="#ffffff"/>
<circle cx="20" cy="-50" r="2" fill="#ffffff"/>
<circle cx="-30" cy="-55" r="2" fill="#ffffff"/>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<!-- Background gradient -->
<linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000814"/>
<stop offset="100%" stop-color="#001d3d"/>
</linearGradient>
<!-- Teacup gradient -->
<linearGradient id="cupGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#fdfdfd"/>
<stop offset="100%" stop-color="#d1c4e9"/>
</linearGradient>
<!-- Saucer (galaxy) gradient -->
<radialGradient id="saucerGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffccff"/>
<stop offset="50%" stop-color="#9933ff"/>
<stop offset="100%" stop-color="#000033"/>
</radialGradient>
<!-- Star gradient -->
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="gold" stop-opacity="1"/>
<stop offset="100%" stop-color="deepskyblue" stop-opacity="0.7"/>
</radialGradient>
<!-- Soft glow filter for stars and saucer swirls -->
<filter id="softGlow">
<feGaussianBlur in="SourceGraphic" stdDeviation="1.5" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Clip path to hide stars inside the cup -->
<clipPath id="starClip">
<rect x="0" y="100" width="300" height="200"/>
</clipPath>
<!-- Define a star symbol -->
<symbol id="star" viewBox="-5 -5 10 10">
<polygon points="0,-5 1.47,-2.02 4.76,-1.54 2.38,0.77 2.94,4.05 0,2.5 -2.94,4.05 -2.38,0.77 -4.76,-1.54 -1.47,-2.02" />
</symbol>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)"/>
<!-- Galaxy-shaped saucer -->
<ellipse cx="150" cy="240" rx="60" ry="20" fill="url(#saucerGradient)" stroke="white" stroke-opacity="0.8" stroke-width="1" filter="url(#softGlow)"/>
<path d="M120,240 C130,230 170,230 180,240" stroke="white" stroke-opacity="0.5" stroke-width="1" fill="none" stroke-linecap="round"/>
<path d="M140,245 C150,235 150,235 160,245" stroke="white" stroke-opacity="0.4" stroke-width="1" fill="none" stroke-linecap="round"/>
<circle cx="150" cy="240" r="30" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
<!-- Teacup body (floating) -->
<path d="M85,100 Q150,60 215,100 L205,120 Q150,140 95,120 Z" fill="url(#cupGradient)" stroke="black" stroke-width="1"/>
<!-- Stars pouring out of the cup -->
<g clip-path="url(#starClip)">
<path d="M150,100 C152,120 148,200 150,240" stroke="white" stroke-opacity="0.2" stroke-width="1" fill="none" stroke-dasharray="2,2"/>
<use xlink:href="#star" transform="translate(150,100) scale(0.8) rotate(15)" fill="url(#starGradient)" filter="url(#softGlow)"/>
<use xlink:href="#star" transform="translate(160,120) scale(1)" fill="url(#starGradient)" filter="url(#softGlow)"/>
<use xlink:href="#star" transform="translate(155,140) scale(1.2) rotate(5)" fill="url(#starGradient)" filter="url(#softGlow)"/>
<use xlink:href="#star" transform="translate(150,160) scale(0.9) rotate(-10)" fill="url(#starGradient)" filter="url(#softGlow)"/>
<use xlink:href="#star" transform="translate(145,180) scale(1.1) rotate(20)" fill="url(#starGradient)" filter="url(#softGlow)"/>
<use xlink:href="#star" transform="translate(150,200) scale(1) rotate(0)" fill="url(#starGradient)" filter="url(#softGlow)"/>
<use xlink:href="#star" transform="translate(155,220) scale(0.8) rotate(-15)" fill="url(#starGradient)" filter="url(#softGlow)"/>
</g>
<!-- Cup rim to overlay the pouring stars -->
<path d="M90,100 Q150,65 210,100" fill="none" stroke="white" stroke-width="2" stroke-linecap="round"/>
<!-- Teacup handle -->
<path d="M215,100 Q240,110 215,120" fill="none" stroke="black" stroke-width="2"/>
</svg>
Judge's Analysis
Player 2's image is more creative and adheres more closely to the prompt by clearly depicting a floating teacup above a galaxy-shaped saucer.
The use of colors and shapes adds a dynamic visual appeal, enhancing the celestial theme.
Player 1's image, while technically sound, lacks clarity in representing the teacup and saucer concept, making Player 2's submission more effective overall.
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
"Iceberg shaped like a sleeping cat"
"An octopus wearing a top hat, juggling teacups in an underwater ballroom"
"Tiny dragon roasting marshmallows on a single matchstick"
"A snail wearing a top hat and monocle, sipping tea under a mushroom"
"Moonlit jellyfish ballet in a glass globe"
"Whale-shaped cloud raining neon-colored fish"