Creative Challenge
"A floating teapot pouring stars into a crescent moon-shaped cup"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#ff6f69"/>
<stop offset="1" stop-color="#fad0c4"/>
</linearGradient>
<linearGradient id="grad2" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#8e2de2"/>
<stop offset="1" stop-color="#4a00e0"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="#0d47a1"/>
<g transform="translate(150 150)">
<g transform="translate(-80 0)">
<path d="M0 0L30 30L60 0Z" fill="url(#grad1)" stroke="#ff6f69" stroke-width="3"/>
<circle cx="30" cy="30" r="15" fill="url(#grad1)" stroke="#ff6f69" stroke-width="3"/>
<path d="M0 0C15 15 30 30 45 0S60 15 75 0" fill="url(#grad1)" stroke="#ff6f69" stroke-width="3"/>
<path d="M0 0C15 -15 30 -30 45 0S60 -15 75 0" fill="url(#grad1)" stroke="#ff6f69" stroke-width="3"/>
<path d="M0 0L30 30L60 0Z" fill="url(#grad1)" stroke="#ff6f69" stroke-width="3" transform="translate(30 30)"/>
</g>
<g transform="translate(80 0)">
<path d="M0 0C15 15 30 30 45 0S60 15 75 0" fill="url(#grad2)" stroke="#8e2de2" stroke-width="3"/>
<path d="M0 0C15 -15 30 -30 45 0S60 -15 75 0" fill="url(#grad2)" stroke="#8e2de2" stroke-width="3"/>
<path d="M0 0L30 30L60 0Z" fill="url(#grad2)" stroke="#8e2de2" stroke-width="3"/>
<circle cx="30" cy="30" r="15" fill="url(#grad2)" stroke="#8e2de2" stroke-width="3"/>
<circle cx="45" cy="45" r="5" fill="white"/>
<circle cx="55" cy="45" r="5" fill="white"/>
<circle cx="65" cy="45" r="5" fill="white"/>
</g>
<g transform="translate(0 -50)">
<path d="M0 0C15 15 30 30 45 0S60 15 75 0" fill="none" stroke="white" stroke-width="3"/>
<circle cx="30" cy="0" r="5" fill="white"/>
<circle cx="45" cy="0" r="5" fill="white"/>
<circle cx="60" cy="0" r="5" fill="white"/>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(25,25,112);stop-opacity:1"/>
<stop offset="100%" style="stop-color:rgb(0,0,139);stop-opacity:1"/>
</radialGradient>
<radialGradient id="moonGradient" cx="30%" cy="30%" r="70%">
<stop offset="0%" style="stop-color:rgb(255,255,200);stop-opacity:1"/>
<stop offset="100%" style="stop-color:rgb(255,223,186);stop-opacity:1"/>
</radialGradient>
<linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1"/>
<stop offset="100%" style="stop-color:rgb(240,248,255);stop-opacity:0.6"/>
</linearGradient>
<pattern id="starPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="url(#starGradient)" />
</pattern>
</defs>
<!-- Background -->
<rect width="100%" height="100%" fill="url(#bgGradient)" />
<!-- Teapot -->
<path d="M145 85c-5 0-10 3-10 8v25c0 5 5 8 10 8h15c5 0 10-3 10-8V93c0-5-5-8-10-8h-5" fill="#5B83A7"/>
<ellipse cx="157" cy="100" rx="25" ry="30" fill="#A9C9DD" />
<path d="M182 120c0 5-5 10-10 13s-15 2-20-3" stroke="#5B83A7" stroke-width="3" fill="none"/>
<line x1="155" y1="70" x2="165" y2="70" stroke="#A9C9DD" stroke-width="4"/>
<!-- Pouring Stars -->
<path d="M160 130c0 20 30 10 40 30s0 20-30 30" stroke="url(#starGradient)" stroke-width="2" fill="none"/>
<circle cx="172" cy="168" r="2" fill="url(#starGradient)"/>
<circle cx="178" cy="174" r="2" fill="url(#starGradient)"/>
<circle cx="184" cy="180" r="2" fill="url(#starGradient)"/>
<!-- Crescent Moon Cup -->
<path d="M230 210c-25-15-25-45 0-60s40 10 40 30-15 40-40 30z" fill="url(#moonGradient)"/>
<ellipse cx="250" cy="200" rx="10" ry="20" fill="url(#moonGradient)"/>
<path d="M220 210c0 15 15 30 30 30s30-15 30-30" fill="none" stroke="rgba(255,223,186,0.7)" stroke-width="2"/>
</svg>
Judge's Analysis
Player 2's image has a clearer representation of a floating teapot and a crescent moon-shaped cup.
The use of color and form is more cohesive and visually appealing, and it adheres more closely to the prompt.
Player 1's submission is more abstract and less clear in depicting the concept, making it less effective in conveying the idea.
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
"A moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"