Creative Challenge
"A teacup with clouds and rain inside, geometric style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffe6e6; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcccc; stop-opacity:1" />
</linearGradient>
<linearGradient id="cloudGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#e6e6e6; stop-opacity:1" />
</linearGradient>
<radialGradient id="rainGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#a6c8ff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#007acc; stop-opacity:1" />
</radialGradient>
</defs>
<path d="M80 220 Q50 180 80 140 Q120 100 220 140 Q250 180 220 220"
fill="url(#cupGradient)" />
<path d="M80 220 Q20 240 80 260 Q150 240 220 260 Q250 240 220 220"
fill="#ff9999" />
<g transform="translate(150, 130)">
<g fill="url(#cloudGradient)">
<ellipse cx="0" cy="0" rx="40" ry="20" />
<ellipse cx="-30" cy="-10" rx="35" ry="15" />
<ellipse cx="30" cy="-10" rx="35" ry="15" />
<ellipse cx="-15" cy="5" rx="25" ry="10" />
<ellipse cx="15" cy="5" rx="25" ry="10" />
</g>
<g fill="url(#rainGradient)">
<line x1="-20" y1="20" x2="-20" y2="50" stroke="url(#rainGradient)" stroke-width="3" />
<line x1="-10" y1="25" x2="-10" y2="55" stroke="url(#rainGradient)" stroke-width="3" />
<line x1="0" y1="15" x2="0" y2="45" stroke="url(#rainGradient)" stroke-width="3" />
<line x1="10" y1="20" x2="10" y2="50" stroke="url(#rainGradient)" stroke-width="3" />
<line x1="20" y1="25" x2="20" y2="55" stroke="url(#rainGradient)" stroke-width="3" />
<line x1="-15" y1="30" x2="-15" y2="60" stroke="url(#rainGradient)" stroke-width="3" />
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cloudGrad" cx="50%" cy="50%" r="80%">
<stop offset="0%" style="stop-color:#fff;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#a0d8ef;stop-opacity:1"/>
</radialGradient>
<linearGradient id="steamGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#e6b3ff;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#ffffff;stop-opacity:1"/>
</linearGradient>
</defs>
<g transform="translate(150,150)">
<!-- Teacup -->
<rect x="-60" y="-70" width="120" height="140" rx="20" fill="#6a1b9a" filter="url(#drop-shadow)"/>
<path d="M-60,-70 L-20,-70 L0,-30 L20,-70 L60,-70" fill="#6a1b9a"/>
<path d="M-20,-70 L-30,-80 L30,-80 L20,-70" fill="#6a1b9a"/>
<!-- Handle -->
<rect x="50" y="-40" width="10" height="80" rx="5" transform="rotate(30 55 -40)" fill="#878787"/>
<!-- Steam -->
<rect x="-30" y="-100" width="10" height="40" transform="rotate(30)" fill="url(#steamGrad)"/>
<rect x="-20" y="-105" width="10" height="35" transform="rotate(45)" fill="url(#steamGrad)"/>
<rect x="-10" y="-110" width="10" height="30" transform="rotate(60)" fill="url(#steamGrad)"/>
<!-- Clouds -->
<circle cx="-20" cy="-60" r="15" fill="url(#cloudGrad)"/>
<circle cx="20" cy="-65" r="12" fill="url(#cloudGrad)"/>
<circle cx="-10" cy="-55" r="10" fill="#fff"/>
<!-- Rain -->
<circle cx="-40" cy="-50" r="3" fill="#a0d8ef" opacity="0.8"/>
<circle cx="-30" cy="-45" r="3" fill="#a0d8ef" opacity="0.8"/>
<circle cx="-20" cy="-40" r="3" fill="#a0d8ef" opacity="0.8"/>
<circle cx="-10" cy="-35" r="3" fill="#a0d8ef" opacity="0.8"/>
<circle cx="0" cy="-30" r="3" fill="#a0d8ef" opacity="0.8"/>
<!-- Floating elements -->
<rect x="-40" y="-90" width="20" height="10" rx="5" fill="#e6b3ff"/>
<rect x="-25" y="-85" width="15" height="8" rx="4" fill="#e6b3ff"/>
</g>
</svg>
Judge's Analysis
Player 2's submission better captures the geometric style with a clear representation of a teacup, clouds, and rain elements.
The use of contrasting colors adds visual appeal and emphasizes the theme effectively.
Player 1's image lacks the geometric elements and clarity in depicting the concept as distinctly as Player 2's design.
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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"