Creative Challenge
"Whale in a teacup, spouting steam"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,204,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#grad1)"/>
<path d="M150,250 Q100,200 150,150 Q200,100 150,50 Q100,0 150,50" fill="url(#grad2)" stroke="blue" stroke-width="3"/>
<path d="M150,50 Q170,30 190,50" fill="white" stroke="blue" stroke-width="2"/>
<path d="M190,50 Q220,30 250,50" fill="white" stroke="blue" stroke-width="2"/>
<circle cx="150" cy="270" r="20" fill="white" stroke="black" stroke-width="2"/>
<circle cx="150" cy="270" r="10" fill="black"/>
<circle cx="130" cy="250" r="5" fill="white"/>
<circle cx="170" cy="250" r="5" fill="white"/>
<path d="M130,260 Q140,250 150,260 Q160,270 170,260" stroke="black" stroke-width="2" fill="none"/>
<path d="M140,280 Q150,270 160,280" stroke="black" stroke-width="2" fill="none"/>
<g transform="translate(150, 30)">
<path d="M0,0 a10,10 0 1,0 20,0 a10,10 0 1,0 -20,0" fill="white" stroke="black" stroke-width="2"/>
<path d="M0,10 Q15,20 30,10" stroke="black" stroke-width="2" fill="none"/>
</g>
<g transform="translate(150, 30)">
<path d="M0,0 a10,10 0 1,0 20,0 a10,10 0 1,0 -20,0" fill="white" stroke="black" stroke-width="2"/>
<path d="M0,10 Q15,20 30,10" stroke="black" stroke-width="2" fill="none"/>
</g>
<path d="M150,25 Q120,5 150,10 Q180,5 150,25" fill="none" stroke="white" stroke-width="5"/>
<path d="M150,25 Q120,5 150,10 Q180,5 150,25" fill="none" stroke="white" stroke-width="5" stroke-dasharray="10 5"/>
<path d="M150,25 Q120,5 150,10 Q180,5 150,25" fill="none" stroke="white" stroke-width="5" stroke-dasharray="10 5" stroke-dashoffset="25"/>
<path d="M150,25 Q120,5 150,10 Q180,5 150,25" fill="none" stroke="white" stroke-width="5" stroke-dasharray="10 5" stroke-dashoffset="50"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="steamGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="rgba(255,255,255,0.8)" />
<stop offset="100%" stop-color="rgba(255,255,255,0)" />
</radialGradient>
<pattern id="wavePattern" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M0,10 C5,15 10,15 15,10 C20,5 25,5 30,10" stroke="#228B22" stroke-width="2" fill="none"/>
</pattern>
</defs>
<ellipse cx="150" cy="220" rx="100" ry="40" fill="#fff" stroke="#D2B48C" stroke-width="4"/>
<path d="M50,180 Q100,120 150,180 T250,180" fill="#ADD8E6"/>
<path d="M70,170 C80,140 100,100 120,110 C140,120 180,50 190,80" fill="#000080"/>
<circle cx="190" cy="80" r="10" fill="#fff"/>
<ellipse cx="200" cy="75" rx="8" ry="5" fill="#000"/>
<path d="M180,70 C 185,50 195,50 200,70" stroke="#000080" stroke-width="3" fill="none"/>
<path d="M175,73 C 180,55 195,55 205,73" stroke="#000080" stroke-width="2" fill="none"/>
<path transform="translate(140,60) scale(0.5)" d="M10,0 C 10,-20 70,-20 70,0 C70,20 90,40 50,40 C 10,40 90,10 10,0" fill="url(#steamGradient)" filter="blur(3)"/>
<path transform="translate(170,50) scale(0.3)" d="M10,0 C 10,-20 70,-20 70,0 C70,20 90,40 50,40 C 10,40 90,10 10,0" fill="url(#steamGradient)" filter="blur(3)"/>
<rect x="50" y="180" width="200" height="40" fill="url(#wavePattern)" clip-path="url(#teacupClip)" />
<clipPath id="teacupClip">
<ellipse cx="150" cy="220" rx="100" ry="40"/>
</clipPath>
</svg>
Judge's Analysis
Player 2's submission captures the whimsy of the concept 'Whale in a teacup, spouting steam' more effectively by creatively integrating the whale's tail with the teacup and steam elements.
The image is visually appealing with a clear narrative and uses color and shapes to convey the idea well.
Player 1's submission lacks clarity and cohesion, making it less effective in adhering to 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
"Cactus wearing a top hat in a desert sunset"
"A penguin in a space suit on a bright orange surfboard riding a cosmic wave"
"A dragon wearing a tutu, balancing on a giant floating bubble"
"Dancing cactus wearing sunglasses in a desert"
"Octopus and cat play chess on a floating iceberg"
"Melting clock made of cheese on a desert cactus"