Creative Challenge
"A snail wearing a crown, racing a turtle with roller skates"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="snailShell" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#f7ca7d"/>
<stop offset="100%" stop-color="#b65e00"/>
</radialGradient>
<linearGradient id="ground" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#d3eecd"/>
<stop offset="100%" stop-color="#86a873"/>
</linearGradient>
<pattern id="shellPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#fffae1" />
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#ground)" />
<g transform="translate(50, 180)">
<ellipse cx="50" cy="-40" rx="50" ry="30" fill="url(#snailShell)" />
<circle cx="50" cy="-40" r="30" fill="url(#shellPattern)" />
<g transform="translate(40, -70)">
<polygon points="7,0 -7,0 0,-10" fill="gold" />
<circle cx="0" cy="0" r="12" fill="brown" />
<ellipse cx="-8" cy="-12" rx="4" ry="2" fill="white"/>
<ellipse cx="8" cy="-12" rx="4" ry="2" fill="white"/>
</g>
</g>
<g transform="translate(180, 200)">
<path d="M0,0 Q40,-10 80,0 Q60,30 20,30 Q0,10 0,0" fill="green"/>
<circle cx="40" cy="10" r="20" fill="#4a752c" />
<g transform="translate(20, 30)">
<rect x="-5" y="0" width="10" height="20" fill="#d3d3d3"/>
<ellipse cx="0" cy="25" rx="10" ry="5" fill="#8f8f8f"/>
<ellipse cx="0" cy="25" rx="5" ry="2" fill="#4b4b4b"/>
</g>
<g transform="translate(60, 30)">
<rect x="-5" y="0" width="10" height="20" fill="#d3d3d3"/>
<ellipse cx="0" cy="25" rx="10" ry="5" fill="#8f8f8f"/>
<ellipse cx="0" cy="25" rx="5" ry="2" fill="#4b4b4b"/>
</g>
<circle cx="20" cy="-10" r="5" fill="#8d8880"/>
<circle cx="60" cy="-10" r="5" fill="#8d8880"/>
</g>
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradient1" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="gold"/>
<stop offset="100%" stop-color="silver"/>
</linearGradient>
<linearGradient id="gradient2" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="limegreen"/>
<stop offset="100%" stop-color="forestgreen"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="100%" height="100%" fill="lightblue"/>
<!-- Snail -->
<path d="M100 100 Q110 120 120 130 T140 150 T160 160 T180 160 T200 150 T220 130 T240 110 T260 100" fill="dodgerblue" stroke="navy" stroke-width="2"/>
<circle cx="150" cy="150" r="40" fill="dodgerblue"/>
<circle cx="160" cy="140" r="10" fill="white"/>
<circle cx="160" cy="140" r="4" fill="black"/>
<circle cx="170" cy="140" r="10" fill="white"/>
<circle cx="170" cy="140" r="4" fill="black"/>
<!-- Crown -->
<path d="M140 100 L160 80 L180 100 L160 120 Z" fill="url(#gradient1)"/>
<!-- Turtle -->
<path d="M200 200 L250 200 Q260 210 250 220 L200 220 Z" fill="url(#gradient2)"/>
<path d="M200 210 L220 210 Q225 215 220 220 L200 220 Z" fill="khaki"/>
<!-- Roller Skates -->
<rect x="205" y="220" width="15" height="20" fill="black"/>
<rect x="225" y="220" width="15" height="20" fill="black"/>
<circle cx="212.5" cy="230" r="10" fill="silver"/>
<circle cx="232.5" cy="230" r="10" fill="silver"/>
<!-- Snail Skates -->
<rect x="145" y="160" width="10" height="20" fill="black"/>
<rect x="175" y="160" width="10" height="20" fill="black"/>
<circle cx="150" cy="170" r="5" fill="silver"/>
<circle cx="180" cy="170" r="5" fill="silver"/>
<!-- Race Track -->
<path d="M50 150 C100 50 200 50 250 150" stroke="black" stroke-width="2" fill="none"/>
<path d="M50 150 C100 250 200 250 250 150" stroke="black" stroke-width="2" fill="none"/>
<!-- Finish Line -->
<line x1="250" y1="145" x2="250" y2="155" stroke="red" stroke-width="4"/>
<line x1="250" y1="150" x2="260" y2="150" stroke="red" stroke-width="4"/>
</svg>
Judge's Analysis
Player 2's submission better captures the idea of a snail wearing a crown racing against a turtle with roller skates.
The image clearly depicts both elements creatively and with technical quality, using distinct shapes and colors to represent each character.
Player 1's submission lacks clarity and detail, making it difficult to interpret the intended scene.
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
"A moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"