Creative Challenge
"Floating tea kettle with planets orbiting as teacups"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="teapotGradient">
<stop offset="0%" stop-color="#cd7f32"/>
<stop offset="100%" stop-color="#8b4513"/>
</linearGradient>
<pattern id="stars" x="0" y="0" width="300" height="300">
<circle cx="100" cy="100" r="1" fill="#fff"/>
<circle cx="200" cy="150" r="1.5" fill="#fff"/>
<circle cx="150" cy="200" r="1" fill="#fff"/>
<circle cx="250" cy="250" r="1.5" fill="#fff"/>
</pattern>
</defs>
<g transform="translate(150,150)">
<!-- Teapot -->
<path d="M-50,-50 Q -30,-60 0,-50 Q 30,-60 50,-50 L 50,-70 Q 35,-75 0,-70 Q -35,-75 -50,-70 Z" fill="url(#teapotGradient)" stroke="#8b4513" stroke-width="2"/>
<!-- Steam -->
<path d="M0,-80 Q 10,-70 20,-60" stroke="#87CEEB" stroke-width="2" opacity="0.8"/>
<path d="M0,-80 Q -10,-70 -20,-60" stroke="#87CEEB" stroke-width="2" opacity="0.8"/>
<!-- Planet orbits -->
<circle cx="0" cy="0" r="100" stroke="#666" fill="none" stroke-width="1"/>
<circle cx="0" cy="0" r="150" stroke="#666" fill="none" stroke-width="1"/>
<!-- Planet 1 (Teacup) -->
<g transform="rotate(45) translate(80,0)">
<circle cx="0" cy="0" r="15" fill="#98FB98"/>
<circle cx="0" cy="0" r="12" fill="url(#stars)"/>
<path d="M0,0 L 20,0 L 15,15 Z" fill="#66CDAA"/>
</g>
<!-- Planet 2 (Teacup) -->
<g transform="rotate(-30) translate(120,0)">
<circle cx="0" cy="0" r="15" fill="#DDA0DD"/>
<circle cx="0" cy="0" r="12" fill="url(#stars)"/>
<path d="M0,0 L 20,0 L 15,15 Z" fill="#9400D3"/>
</g>
<!-- Planet 3 (Teacup) -->
<g transform="rotate(135) translate(140,0)">
<circle cx="0" cy="0" r="15" fill="#D2B48C"/>
<circle cx="0" cy="0" r="12" fill="url(#stars)"/>
<path d="M0,0 L 20,0 L 15,15 Z" fill="#8B4513"/>
</g>
<!-- Planet 4 (Teacup) -->
<g transform="rotate(-45) translate(60,0)">
<circle cx="0" cy="0" r="15" fill="#4169E1"/>
<circle cx="0" cy="0" r="12" fill="url(#stars)"/>
<path d="M0,0 L 20,0 L 15,15 Z" fill="#00008B"/>
</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>
<linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</linearGradient>
<radialGradient id="gradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FF6347" />
<stop offset="100%" stop-color="#DC143C" />
</radialGradient>
<pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white" opacity="0.5" />
<circle cx="10" cy="12" r="0.5" fill="white" opacity="0.3" />
<circle cx="17" cy="5" r="1.5" fill="white" opacity="0.7" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#stars)" />
<path d="M100 100 C 120 50, 180 50, 200 100 L 250 150 C 260 200, 220 250, 150 250 L 100 225 Z" fill="url(#gradient1)" stroke="#A0522D" stroke-width="3" />
<ellipse cx="150" cy="150" rx="10" ry="5" fill="#A0522D" transform="rotate(20 150 150)" />
<circle cx="70" cy="180" r="20" fill="#FFFFFF" stroke="#A0522D" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="0 70 180" to="360 70 180" dur="20s" repeatCount="indefinite" />
</circle>
<circle cx="250" cy="80" r="30" fill="url(#gradient2)" stroke="white" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="30s" repeatCount="indefinite" />
<animate attributeName="r" values="30;35;30" dur="5s" repeatCount="indefinite" />
</circle>
<ellipse cx="180" cy="220" rx="15" ry="10" fill="lightblue" stroke="white" stroke-width="1.5">
<animateMotion dur="15s" repeatCount="indefinite" path="M 150 150 c 0 50 50 50 50 0 c 0 -50 -50 -50 -50 0" />
</ellipse>
</svg>
Judge's Analysis
Player 1's submission more clearly represents the concept of a floating tea kettle with planets orbiting as teacups.
The inclusion of orbiting elements and a central object resembling a kettle handle suggests adherence to the prompt.
Player 2's submission lacks clear representation of the tea kettle and the orbital theme, making it less aligned with 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
"Intergalactic snail race on a rainbow road"
"Flamingo on roller skates juggling pineapples"
"Dinosaur in a Tea Cup"
"Whale ballroom: whales in elegant attire dancing gracefully on ocean currents"
"Crane lifting a giant surreal watermelon above a silhouetted skyline"
"A chameleon on a disco ball, reflecting rainbow light"