Creative Challenge
"A snail racing a rocket on a spiral galaxy track."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Galaxy Gradient -->
<radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1b003f" />
<stop offset="70%" stop-color="#4b0082" />
<stop offset="100%" stop-color="#000000" />
</radialGradient>
<!-- Spiral Track Gradient -->
<linearGradient id="trackGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff7f50" />
<stop offset="100%" stop-color="#ff1493" />
</linearGradient>
<!-- Star Pattern -->
<pattern id="stars" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="1" cy="1" r="1" fill="#ffffff" />
<circle cx="9" cy="9" r="1" fill="#ffffff" />
</pattern>
<!-- Snail Gradient -->
<radialGradient id="snailGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#8b4513" />
<stop offset="100%" stop-color="#cd853f" />
</radialGradient>
<!-- Rocket Gradient -->
<linearGradient id="rocketGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#b0c4de" />
<stop offset="100%" stop-color="#4682b4" />
</linearGradient>
<!-- Flame Gradient -->
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff4500" />
<stop offset="100%" stop-color="#ffa500" />
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#galaxyGradient)" />
<!-- Stars -->
<rect width="300" height="300" fill="url(#stars)" opacity="0.5" />
<!-- Spiral Galaxy Arms -->
<g stroke="rgba(255,255,255,0.2)" stroke-width="1">
<!-- First Spiral Arm -->
<path d="M150,150
C160,140 180,130 200,150
C220,170 240,200 220,220
C200,240 170,250 150,250" fill="none"/>
<!-- Second Spiral Arm -->
<path d="M150,150
C140,160 130,180 150,200
C170,220 200,240 220,220
C240,200 250,170 240,150" fill="none"/>
</g>
<!-- Spiral Track -->
<g transform="rotate(-45 150 150)">
<path d="M150,150
spiral 100,100 0.05 720" fill="none" stroke="url(#trackGradient)" stroke-width="4" />
</g>
<!-- Snail -->
<g transform="translate(80,220)">
<!-- Body -->
<ellipse cx="0" cy="10" rx="15" ry="10" fill="#6a5acd" />
<!-- Head -->
<circle cx="-10" cy="5" r="5" fill="#483d8b" />
<!-- Antennae -->
<line x1="-12" y1="3" x2="-15" y2="0" stroke="#483d8b" stroke-width="1.5"/>
<line x1="-8" y1="3" x2="-5" y2="0" stroke="#483d8b" stroke-width="1.5"/>
<!-- Shell -->
<circle cx="0" cy="10" r="8" fill="url(#snailGradient)" />
<!-- Motion Lines -->
<path d="M-20,25 Q-25,30 -20,35" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.5"/>
</g>
<!-- Rocket -->
<g transform="translate(220,80) scale(1.2)">
<!-- Body -->
<path d="M0,-20
L5,10
L-5,10
Z" fill="url(#rocketGradient)" />
<!-- Window -->
<circle cx="0" cy="-5" r="3" fill="#ffffff" />
<!-- Fins -->
<path d="M5,10
L10,15
L5,15
Z" fill="#ff6347"/>
<path d="-5,10
L-10,15
L-5,15
Z" fill="#ff6347"/>
<!-- Flame -->
<path d="M0,10
C2,15 2,20 0,25
C-2,20 -2,15 0,10" fill="url(#flameGradient)" opacity="0.8"/>
</g>
<!-- Motion Trails -->
<path d="M80,220
C90,210 100,200 110,190" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.5"/>
<path d="M220,80
C230,90 240,100 250,110" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#1a0033;stop-opacity:1" />
<stop offset="30%" style="stop-color:#4a0080;stop-opacity:1" />
<stop offset="60%" style="stop-color:#8000ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#000011;stop-opacity:1" />
</radialGradient>
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="70%" style="stop-color:#ffff99;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#ffff99;stop-opacity:0" />
</radialGradient>
<linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff6b35;stop-opacity:1" />
<stop offset="50%" style="stop-color:#f7931e;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc02;stop-opacity:1" />
</linearGradient>
<linearGradient id="rocketGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff0040;stop-opacity:1" />
<stop offset="50%" style="stop-color:#ff4080;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffffff;stop-opacity:1" />
</linearGradient>
<linearGradient id="trackGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00ffff;stop-opacity:0.8" />
<stop offset="50%" style="stop-color:#0080ff;stop-opacity:0.6" />
<stop offset="100%" style="stop-color:#4000ff;stop-opacity:0.4" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Galaxy Background -->
<circle cx="150" cy="150" r="150" fill="url(#galaxyGradient)"/>
<!-- Stars -->
<circle cx="80" cy="60" r="2" fill="url(#starGradient)" filter="url(#glow)"/>
<circle cx="220" cy="90" r="1.5" fill="url(#starGradient)" filter="url(#glow)"/>
<circle cx="50" cy="200" r="1" fill="url(#starGradient)" filter="url(#glow)"/>
<circle cx="270" cy="180" r="2.5" fill="url(#starGradient)" filter="url(#glow)"/>
<circle cx="180" cy="40" r="1" fill="url(#starGradient)" filter="url(#glow)"/>
<circle cx="40" cy="120" r="1.5" fill="url(#starGradient)" filter="url(#glow)"/>
<!-- Spiral Galaxy Track -->
<path d="M 150 150
m -120 0
a 120 120 0 0 1 240 0
a 100 100 0 0 1 -200 0
a 80 80 0 0 1 160 0
a 60 60 0 0 1 -120 0
a 40 40 0 0 1 80 0
a 20 20 0 0 1 -40 0"
stroke="url(#trackGradient)"
stroke-width="8"
fill="none"
filter="url(#glow)"/>
<!-- Snail -->
<g transform="translate(80, 140)">
<!-- Snail Shell -->
<circle cx="0" cy="0" r="18" fill="url(#shellGradient)" stroke="#cc4400" stroke-width="1"/>
<path d="M -12 -12
a 8 8 0 0 1 16 0
a 6 6 0 0 1 -12 0
a 4 4 0 0 1 8 0
a 2 2 0 0 1 -4 0"
stroke="#aa3300" stroke-width="2" fill="none"/>
<!-- Snail Body -->
<ellipse cx="15" cy="8" rx="20" ry="8" fill="#90ee90" stroke="#228b22" stroke-width="1"/>
<!-- Snail Head -->
<ellipse cx="32" cy="6" rx="8" ry="6" fill="#90ee90" stroke="#228b22" stroke-width="1"/>
<!-- Antennae -->
<line x1="38" y1="2" x2="42" y2="-2" stroke="#228b22" stroke-width="2"/>
<line x1="38" y1="4" x2="42" y2="0" stroke="#228b22" stroke-width="2"/>
<circle cx="42" cy="-2" r="1.5" fill="#ff69b4"/>
<circle cx="42" cy="0" r="1.5" fill="#ff69b4"/>
<!-- Snail Trail -->
<path d="M 15 16 Q 0 20 -15 18 Q -30 16 -45 20"
stroke="#87ceeb" stroke-width="3" fill="none" opacity="0.7"/>
</g>
<!-- Rocket -->
<g transform="translate(200, 80) rotate(45)">
<!-- Rocket Body -->
<ellipse cx="0" cy="0" rx="25" ry="8" fill="url(#rocketGradient)" stroke="#cc0020" stroke-width="1"/>
<!-- Rocket Nose -->
<polygon points="25,0 35,-4 35,4" fill="#ffff00" stroke="#ffcc00" stroke-width="1"/>
<!-- Rocket Fins -->
<polygon points="-25,-8 -35,-12 -30,-4" fill="#0066cc" stroke="#004499" stroke-width="1"/>
<polygon points="-25,8 -35,12 -30,4" fill="#0066cc" stroke="#004499" stroke-width="1"/>
<!-- Rocket Window -->
<circle cx="8" cy="0" r="5" fill="#87ceeb" stroke="#4682b4" stroke-width="1"/>
<circle cx="8" cy="0" r="3" fill="#add8e6" opacity="0.8"/>
<!-- Rocket Flames -->
<ellipse cx="-35" cy="0" rx="8" ry="4" fill="#ff4500" filter="url(#glow)"/>
<ellipse cx="-40" cy="0" rx="6" ry="3" fill="#ff6600" filter="url(#glow)"/>
<ellipse cx="-44" cy="0" rx="4" ry="2" fill="#ffff00" filter="url(#glow)"/>
</g>
<!-- Speed Lines for Rocket -->
<g opacity="0.6">
<line x1="160" y1="90" x2="140" y2="100" stroke="#00ffff" stroke-width="2"/>
<line x1="165" y1="85" x2="145" y2="95" stroke="#00ffff" stroke-width="1.5"/>
<line x1="170" y1="80" x2="150" y2="90" stroke="#00ffff" stroke-width="1"/>
</g>
<!-- Finish Line -->
<g transform="translate(150, 150)">
<rect x="-3" y="-40" width="6" height="80" fill="#ffffff" opacity="0.8"/>
<rect x="-15" y="-35" width="30" height="8" fill="#000000"/>
<rect x="-12" y="-32" width="6" height="2" fill="#ffffff"/>
<rect x="-6" y="-32" width="6" height="2" fill="#ffffff"/>
<rect x="0" y="-32" width="6" height="2" fill="#ffffff"/>
<rect x="6" y="-32" width="6" height="2" fill="#ffffff"/>
</g>
<!-- Galaxy Center Glow -->
<circle cx="150" cy="150" r="20" fill="#ffffff" opacity="0.3" filter="url(#glow)"/>
<circle cx="150" cy="150" r="10" fill="#ffff99" opacity="0.5" filter="url(#glow)"/>
</svg>
Judge's Analysis
Player 2's submission demonstrates greater creativity and adherence to the prompt, with a clear depiction of both the snail and the rocket racing on a vibrant spiral galaxy track.
The composition is more visually appealing, with dynamic colors and clear details that enhance the narrative.
Player 1's submission, while conceptually aligned, is less visually engaging and lacks the same level of detail and creativity in execution.
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.