Creative Challenge
"A teapot sailing through a galaxy of stars, steam forming constellations"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Galaxy Background -->
<radialGradient id="galaxy" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#333" stop-opacity="1" />
<stop offset="100%" stop-color="#000" stop-opacity="0" />
</radialGradient>
<rect width="300" height="300" fill="url(#galaxy)" />
<!-- Stars -->
<g id="stars">
<circle cx="20" cy="50" r="2" fill="#fff" opacity="0.8" />
<circle cx="150" cy="100" r="4" fill="#fff" opacity="0.8" />
<circle cx="250" cy="50" r="2" fill="#fff" opacity="0.8" />
<circle cx="50" cy="200" r="3" fill="#fff" opacity="0.8" />
<circle cx="200" cy="250" r="4" fill="#fff" opacity="0.8" />
</g>
<!-- Teapot -->
<g id="teapot" transform="translate(150, 150)">
<ellipse cx="0" cy="20" rx="20" ry="30" fill="#900" />
<ellipse cx="0" cy="-20" rx="20" ry="30" fill="#900" />
<path d="M -10 -10 L 10 -10 L 10 10 L -10 10 Z" fill="#900" />
<path d="M -5 25 L 5 25 L 5 30 L -5 30 Z" fill="#900" />
</g>
<!-- Steam -->
<g id="steam">
<path d="M 140 120 L 160 100 L 180 120" stroke="#fff" stroke-width="2" />
<path d="M 140 110 L 150 90 L 160 110" stroke="#fff" stroke-width="2" />
<path d="M 140 100 L 140 80 L 160 100" stroke="#fff" stroke-width="2" />
</g>
<!-- Constellations -->
<g id="constellations">
<path d="M 50 100 L 70 80 L 90 100" stroke="#fff" stroke-width="2" />
<path d="M 100 150 L 120 120 L 140 150" stroke="#fff" stroke-width="2" />
<path d="M 200 50 L 220 30 L 240 50" stroke="#fff" stroke-width="2" />
</g>
<!-- Animation -->
<animateTransform xlink:href="#teapot" attributeName="transform" type="translate" from="150, 150" to="200, 150" dur="5s" repeatCount="indefinite" />
<animateTransform xlink:href="#steam" attributeName="transform" type="translate" from="0, 0" to="0, -20" dur="2s" repeatCount="indefinite" />
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="galaxyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#000000"/>
<stop offset="50%" stop-color="#000000"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<linearGradient id="teapotGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff6666"/>
<stop offset="100%" stop-color="#ff9999"/>
</linearGradient>
<linearGradient id="steamGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#galaxyGradient)"/>
<g transform="translate(150 150)">
<path d="M-50-50a50 50 0 1 1 100 0 50 50 0 1 1 -100 0z" fill="url(#teapotGradient)"/>
<path d="M-10-100c0-10 10-10 10 0c0 10-10 10-10 0z" fill="url(#teapotGradient)"/>
<path d="M-10-100l-30-30 30-30 30 30-30 30z" fill="url(#teapotGradient)"/>
<path d="M-10-100l-30-30 30-30 30 30-30 30z" fill="url(#teapotGradient)" transform="translate(0 20)"/>
</g>
<g transform="translate(150 150)">
<circle cx="-50" cy="-50" r="2" fill="#ff6666"/>
<circle cx="50" cy="-50" r="2" fill="#ff6666"/>
<circle cx="0" cy="0" r="2" fill="#ff6666"/>
<circle cx="-30" cy="30" r="2" fill="#ff6666"/>
<circle cx="30" cy="30" r="2" fill="#ff6666"/>
</g>
<g transform="translate(150 150)">
<path d="M-40-80c0 0 10 20 20 0c0-20-10-20-20 0z" fill="url(#steamGradient)" transform="rotate(30)"/>
<path d="M-40-80c0 0 10 20 20 0c0-20-10-20-20 0z" fill="url(#steamGradient)" transform="rotate(-30)"/>
</g>
</svg>
Judge's Analysis
Player 2's submission creatively uses abstract shapes to represent the galaxy and stars, with the teapot integrated into the scene.
The image shows a good balance of elements and makes effective use of color to create visual interest.
In contrast, Player 1's image did not load, making it impossible to evaluate against 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
"Parrot wearing a detective hat, solving a mystery at a jungle library"
"Cactus playing electric guitar under a disco ball"
"Fish with an umbrella in a desert storm"
"Cat surfing on a rainbow wave under a candy sky"
"An ant riding a unicycle on a tightrope under a crescent moon"
"Floating octopus with hot air balloon hat over a cityscape"