Creative Challenge
"Sneezing snail with a top hat"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="snailShell" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffcc66; stop-opacity:1" />
<stop offset="100%" style="stop-color:#996633; stop-opacity:1" />
</radialGradient>
<linearGradient id="snailBody" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#b2e0c2; stop-opacity:1" />
<stop offset="100%" style="stop-color:#80b3a1; stop-opacity:1" />
</linearGradient>
<filter id="sneezeEffect">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
<feColorMatrix in="blur" type="matrix" values="1 0 0 0 255 0 1 0 0 255 0 0 1 0 255 0 0 0 1 0" />
<feMerge>
<feMergeNode />
</feMerge>
</filter>
</defs>
<g transform="translate(150,150)">
<!-- Snail's shell -->
<path d="M-40,20 Q-50,-30 -20,-50 Q10,-70 40,-50 Q70,-30 50,20 Q40,70 0,80 Q-40,70 -40,20 Z" fill="url(#snailShell)"/>
<!-- Snail's body -->
<path d="M-40,20 Q-60,30 -55,70 Q-45,90 -25,90 Q-5,90 0,70 Q5,90 25,90 Q45,90 55,70 Q60,30 40,20" fill="url(#snailBody)"/>
<!-- Snail's face -->
<circle cx="-30" cy="0" r="10" fill="#fff" />
<circle cx="-30" cy="0" r="5" fill="#000" />
<!-- Antennae -->
<line x1="-35" y1="-10" x2="-50" y2="-30" stroke="#b2e0c2" stroke-width="3"/>
<line x1="-25" y1="-10" x2="-10" y2="-30" stroke="#b2e0c2" stroke-width="3"/>
<!-- Top hat -->
<rect x="-20" y="-50" width="40" height="10" fill="#333" />
<rect x="-30" y="-60" width="60" height="10" fill="#333" />
<ellipse cx="0" cy="-60" rx="30" ry="10" fill="#333"/>
<!-- Sneeze effect -->
<path d="M-15,10 Q-5,-10 10,-10" stroke="#ffffff" stroke-width="3" fill="none" filter="url(#sneezeEffect)"/>
<path d="M-8,12 Q1,-6 16,-6" stroke="#ffffff" stroke-width="3" fill="none" filter="url(#sneezeEffect)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="snailGradient">
<stop offset="0%" stop-color="#FF99CC"/>
<stop offset="100%" stop-color="#FFB3E6"/>
</radialGradient>
<linearGradient id="hatBand" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#CD0000"/>
<stop offset="100%" stop-color="#FF0000"/>
</linearGradient>
<pattern id="sneezeDots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="#98FB98"/>
</pattern>
</defs>
<path d="M150,200 Q130,180 150,160 Q170,180 150,200" fill="url(#snailGradient)" stroke="#FF69B4" stroke-width="2"/>
<path d="M140,160 L160,160 L155,145 Z" fill="#FFFFFF" stroke="#FF69B4"/>
<rect x="145" y="135" width="10" height="20" fill="#000000" rx="3"/>
<rect x="140" y="120" width="20" height="10" fill="url(#hatBand)" rx="2"/>
<circle cx="150" cy="115" r="5" fill="#000000"/>
<path d="M150,170 L150,185 L145,190 L155,190 Z" fill="#98FB98" stroke="#4CAF50" stroke-width="1"/>
<path d="M150,185 Q160,195 155,205" fill="#98FB98" opacity="0.7"/>
<path d="M150,185 Q140,195 145,205" fill="#98FB98" opacity="0.7"/>
<rect x="120" y="180" width="60" height="20" rx="10" fill="url(#sneezeDots)"/>
<path d="M120,195 L140,200 L120,205" fill="#98FB98"/>
<text x="135" y="190" font-size="10" fill="#FFFFFF" font-family="Arial" text-anchor="middle">Achoo!</text>
<rect x="120" y="175" width="60" height="30" rx="15" fill="#B0E0E6" opacity="0.8"/>
<rect x="0" y="0" width="300" height="300" fill="url(#backgroundGradient)"/>
<path d="M10,280 L300,280 L300,300 L10,300 Z" fill="#4B8788"/>
<path d="M50,290 L60,285 L50,280 Z" fill="#228B22"/>
<path d="M250,290 L260,285 L250,280 Z" fill="#228B22"/>
</svg>
Judge's Analysis
Player 1's submission more clearly depicts a snail with a distinctive top hat and a sneezing expression, fulfilling the prompt effectively.
The design is simple yet manages to convey the concept with a recognizable form and humor.
Player 2's image lacks clarity in representing the snail and the sneezing action, 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
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"
"Neon giraffe dancing on a pixelated moon"