Creative Challenge
"A snail racing a jet on a rainbow road."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient for rainbow road -->
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="16.6%" stop-color="#ff7f00"/>
<stop offset="33.3%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="66.6%" stop-color="#0000ff"/>
<stop offset="83.3%" stop-color="#4b0082"/>
<stop offset="100%" stop-color="#8f00ff"/>
</linearGradient>
</defs>
<!-- Rainbow Road -->
<path d="M20,250 Q75,200 150,250 Q225,300 280,250" fill="none" stroke="url(#rainbow)" stroke-width="15" stroke-linecap="round"/>
<!-- Snail Shell (spiral) -->
<g id="snail" transform="translate(80,200)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="20" ry="10" fill="#8b5a2b" stroke="#5c3b0a" stroke-width="2"/>
<!-- Head -->
<circle cx="25" cy="-10" r="8" fill="#a0522d" stroke="#5c3b0a" stroke-width="1.5"/>
<!-- Eye -->
<circle cx="27" cy="-12" r="2" fill="#fff"/>
<circle cx="27" cy="-12" r="0.8" fill="#000"/>
<!-- Spiral shell pattern -->
<path d="M0,0
m-10,0
a10,10 0 1,1 20,0
a10,10 0 1,1 -20,0
m-8,0
a8,8 0 1,1 16,0
a8,8 0 1,1 -16,0"
fill="none" stroke="#654321" stroke-width="1"/>
</g>
<!-- Jet (abstractized airplane) -->
<g id="jet" transform="translate(250,100)">
<!-- Main body -->
<rect x="-20" y="-5" width="40" height="10" fill="#555" rx="2" ry="2"/>
<!-- Nose -->
<polygon points="20,0 30,-5 30,5" fill="#888"/>
<!-- Wings -->
<polygon points="-10,0 -10,-20 10,-20 10,0" fill="#666"/>
<!-- Tail fin -->
<polygon points="-15,-5 -25,-15 -15,-15" fill="#444"/>
<!-- Window -->
<circle cx="0" cy="-1" r="2" fill="#00ffff" opacity="0.7"/>
</g>
<!-- Sun with rays (optional, for vibrant scene) -->
<circle cx="50" cy="50" r="15" fill="#ffd700"/>
<g stroke="#ffd700" stroke-width="2">
<line x1="50" y1="5" x2="50" y2="0"/>
<line x1="50" y1="105" x2="50" y2="100"/>
<line x1="35" y1="50" x2="30" y2="50"/>
<line x1="70" y1="50" x2="75" y2="50"/>
<line x1="50" y1="35" x2="50" y2="30"/>
<line x1="50" y1="65" x2="50" y2="70"/>
<line x1="35" y1="65" x2="30" y2="70"/>
<line x1="65" y1="35" x2="70" y2="30"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Sky -->
<linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#b2e4ff"/>
<stop offset="100%" stop-color="#ffffff"/>
</linearGradient>
<!-- Rainbow road -->
<linearGradient id="rainbowRoad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="16%" stop-color="#ff7f00"/>
<stop offset="33%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="66%" stop-color="#0000ff"/>
<stop offset="83%" stop-color="#4b0082"/>
<stop offset="100%" stop-color="#8f00ff"/>
</linearGradient>
<!-- Faint stripes over the road -->
<pattern id="roadTexture" width="8" height="8" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<rect width="4" height="8" fill="rgba(255,255,255,0.08)"/>
</pattern>
<!-- Snail shell -->
<radialGradient id="shellGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffe9a0"/>
<stop offset="50%" stop-color="#ff8c00"/>
<stop offset="100%" stop-color="#8b00ff"/>
</radialGradient>
<!-- Jet body -->
<linearGradient id="jetGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#d0f0ff"/>
<stop offset="100%" stop-color="#0055ff"/>
</linearGradient>
<!-- Jet flame -->
<linearGradient id="flame" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ffffcc"/>
<stop offset="40%" stop-color="#ffbb00"/>
<stop offset="100%" stop-color="#ff0000"/>
</linearGradient>
<!-- Speed smear -->
<filter id="speedLines" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur"/>
<feOffset in="blur" dx="-6" result="smear"/>
<feBlend in="SourceGraphic" in2="smear" mode="lighten"/>
</filter>
</defs>
<!-- Background sky -->
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Rainbow road -->
<g transform="rotate(-15 150 150)">
<rect x="-40" y="110" width="380" height="60" fill="url(#rainbowRoad)"/>
<rect x="-40" y="110" width="380" height="60" fill="url(#roadTexture)"/>
</g>
<!-- Snail -->
<g id="snail" transform="translate(35,150)">
<!-- Foot -->
<path d="M0 50 q40 20 80 0 q-20 25 -80 0 z" fill="#7fd28b"/>
<!-- Body -->
<ellipse cx="60" cy="30" rx="18" ry="24" fill="#7fd28b"/>
<!-- Shell -->
<circle cx="25" cy="25" r="28" fill="url(#shellGradient)" stroke="#663399" stroke-width="2"/>
<!-- Shell swirl -->
<path d="M25 25 m-15 0 a15 15 0 1 0 30 0 a15 15 0 1 0 -30 0
M25 25 m-7 0 a7 7 0 1 0 14 0 a7 7 0 1 0 -14 0" fill="none" stroke="#663399" stroke-width="2"/>
<!-- Eye stalks -->
<line x1="52" y1="10" x2="52" y2="-8" stroke="#7fd28b" stroke-width="3"/>
<line x1="68" y1="10" x2="68" y2="-8" stroke="#7fd28b" stroke-width="3"/>
<!-- Eyes -->
<circle cx="52" cy="-11" r="4" fill="#ffffff" stroke="#7fd28b" stroke-width="1"/>
<circle cx="68" cy="-11" r="4" fill="#ffffff" stroke="#7fd28b" stroke-width="1"/>
<circle cx="52" cy="-11" r="2" fill="#000000"/>
<circle cx="68" cy="-11" r="2" fill="#000000"/>
<!-- Little grin -->
<path d="M58 30 q4 4 8 0" fill="none" stroke="#006400" stroke-width="2" stroke-linecap="round"/>
</g>
<!-- Jet -->
<g id="jet" transform="translate(180,60)" filter="url(#speedLines)">
<!-- Body & nose -->
<path d="M0 10 L80 0 L80 20 L0 10 Z" fill="url(#jetGradient)" stroke="#003399" stroke-width="1"/>
<!-- Wings -->
<polygon points="20,10 35,28 20,24" fill="#003399" opacity="0.9"/>
<polygon points="45,10 60,28 45,24" fill="#003399" opacity="0.9"/>
<!-- Cockpit -->
<ellipse cx="60" cy="10" rx="7" ry="4" fill="#ffffff" opacity="0.7"/>
<!-- Flame -->
<path d="M-12 6 Q-18 10 -12 14 L0 10 Z" fill="url(#flame)"/>
</g>
<!-- Speed lines for jet -->
<g stroke="#0055ff" stroke-width="1.5" stroke-linecap="round" opacity="0.6">
<line x1="125" y1="90" x2="155" y2="92"/>
<line x1="130" y1="100" x2="160" y2="102"/>
<line x1="128" y1="110" x2="158" y2="112"/>
</g>
<!-- Dramatic motion lines for the courageous snail -->
<g stroke="#7fd28b" stroke-width="1" stroke-linecap="round" opacity="0.6">
<line x1="20" y1="205" x2="10" y2="208"/>
<line x1="18" y1="195" x2="8" y2="198"/>
<line x1="22" y1="215" x2="12" y2="218"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is more visually appealing, with a polished and vibrant design.
The snail and jet are more detailed and expressive, and the diagonal rainbow road adds dynamic energy to the composition.
Player 1's submission, while adhering to the prompt, is simpler and less technically refined.
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.