Creative Challenge
"A snail with a transparent shell, revealing a miniature city inside"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="100%" height="100%" fill="linear-gradient(to bottom, #add8e6, #e0f7fa)" />
<!-- Snail Body -->
<path d="M170,200 Q150,180 130,200 Q110,220 90,200 Q70,180 50,200 Q30,220 10,200 Q20,250 90,250 Q160,250 170,200"
fill="#8b5a2b" />
<!-- Snail Head -->
<circle cx="180" cy="215" r="15" fill="#8b5a2b" />
<!-- Eyes -->
<circle cx="175" cy="210" r="3" fill="#fff" />
<circle cx="185" cy="210" r="3" fill="#fff" />
<!-- Pupils -->
<circle cx="175" cy="210" r="1.5" fill="#000" />
<circle cx="185" cy="210" r="1.5" fill="#000" />
<!-- Antennae -->
<line x1="170" y1="200" x2="160" y2="185" stroke="#8b5a2b" stroke-width="3" />
<line x1="190" y1="200" x2="200" y2="185" stroke="#8b5a2b" stroke-width="3" />
<!-- Transparent Shell -->
<ellipse cx="130" cy="160" rx="60" ry="40" fill="rgba(135,206,235,0.5)" stroke="#4682b4" stroke-width="2" />
<!-- Miniature City Inside the Shell -->
<!-- Buildings -->
<rect x="100" y="130" width="15" height="30" fill="#b0c4de" />
<rect x="120" y="120" width="20" height="40" fill="#87a2e0" />
<rect x="145" y="140" width="10" height="20" fill="#b0c4de" />
<!-- Windows -->
<circle cx="107" cy="135" r="2" fill="#fff" />
<circle cx="112" cy="145" r="2" fill="#fff" />
<circle cx="127" cy="125" r="2" fill="#fff" />
<circle cx="127" cy="135" r="2" fill="#fff" />
<circle cx="140" cy="125" r="2" fill="#fff" />
<circle cx="147" cy="145" r="1.5" fill="#fff" />
<!-- Trees -->
<ellipse cx="110" cy="160" rx="3" ry="10" fill="#228b22" />
<ellipse cx="135" cy="160" rx="3" ry="10" fill="#228b22" />
<!-- Sun -->
<circle cx="220" cy="70" r="30" fill="radial-gradient(circle, #ffd700, #ffa500)" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Snail Body -->
<circle cx="150" cy="150" r="120" fill="#FFC080" />
<circle cx="150" cy="150" r="110" fill="url(#snail-body-pattern)" />
<circle cx="150" cy="150" r="100" fill="#FFC080" />
<!-- Transparent Shell -->
<circle cx="150" cy="150" r="130" fill="url(#shell-gradient)" />
<!-- Miniature City -->
<rect x="120" y="100" width="60" height="50" fill="#333" rx="5" />
<rect x="130" y="110" width="40" height="30" fill="#666" rx="5" />
<rect x="140" y="120" width="20" height="20" fill="#999" rx="5" />
<circle cx="150" cy="130" r="10" fill="#CCC" />
<rect x="160" y="120" width="20" height="20" fill="#999" rx="5" />
<rect x="170" y="110" width="40" height="30" fill="#666" rx="5" />
<rect x="180" y="100" width="60" height="50" fill="#333" rx="5" />
<path d="M140 140 L160 140 L160 160 L140 160 Z" fill="#CCC" />
<path d="M130 150 L170 150 L170 170 L130 170 Z" fill="#999" />
<path d="M120 160 L180 160 L180 180 L120 180 Z" fill="#666" />
<!-- Patterns and Gradients -->
<defs>
<pattern id="snail-body-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="#FFC080" rx="5" />
<circle cx="10" cy="10" r="5" fill="#FFC080" />
</pattern>
<linearGradient id="shell-gradient" x1="0" y1="0" x2="0" y2="100%" >
<stop offset="0%" stop-color="#FFC080" stop-opacity="0.5" />
<stop offset="100%" stop-color="#FFC080" stop-opacity="0.1" />
</linearGradient>
</defs>
</svg>
Judge's Analysis
Player 1's image effectively adheres to the prompt by clearly depicting a snail with a transparent shell housing a miniature city.
The composition is straightforward, with discernible elements representing buildings inside the shell.
Player 2's image lacks clarity and does not effectively convey the concept of a snail or a city inside a transparent shell.
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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Cat soaring on a hoverboard under a glowing moon"