Creative Challenge
"A snail racing a rocket on a curved rainbow track under a glowing moon."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#020024"/>
<stop offset="100%" stop-color="#092047"/>
</linearGradient>
<radialGradient id="moonGlow" cx="0.3" cy="0.3" r="0.4">
<stop offset="0%" stop-color="#ffffff" stop-opacity="1"/>
<stop offset="40%" stop-color="#f7f4c2" stop-opacity="0.9"/>
<stop offset="70%" stop-color="#d9cf8c" stop-opacity="0.4"/>
<stop offset="100%" stop-color="#c0ba8b" stop-opacity="0"/>
</radialGradient>
<linearGradient id="rainbow" x1="0" y1="0" x2="300" y2="0" gradientUnits="userSpaceOnUse">
<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="#00ffff"/>
<stop offset="83%" stop-color="#0000ff"/>
<stop offset="100%" stop-color="#8b00ff"/>
</linearGradient>
<radialGradient id="shellGrad" cx="0.35" cy="0.35" r="0.7">
<stop offset="0%" stop-color="#ffcc7d"/>
<stop offset="50%" stop-color="#ff8844"/>
<stop offset="100%" stop-color="#ff5522"/>
</radialGradient>
<linearGradient id="flameGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffffb3"/>
<stop offset="40%" stop-color="#ff9e00"/>
<stop offset="70%" stop-color="#ff003c"/>
<stop offset="100%" stop-color="#ff003c" stop-opacity="0"/>
</linearGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<g fill="#ffffff" opacity="0.8">
<circle cx="40" cy="30" r="1.2"/>
<circle cx="80" cy="70" r="1"/>
<circle cx="120" cy="20" r="1.5"/>
<circle cx="160" cy="60" r="1"/>
<circle cx="200" cy="40" r="1.2"/>
<circle cx="240" cy="80" r="1.4"/>
<circle cx="260" cy="30" r="1"/>
<circle cx="30" cy="110" r="1.2"/>
<circle cx="90" cy="140" r="1"/>
<circle cx="150" cy="130" r="1.3"/>
</g>
<!-- Moon -->
<circle cx="60" cy="60" r="40" fill="url(#moonGlow)" filter="url(#glow)"/>
<!-- Rainbow track -->
<path d="M20 250 Q150 50 280 220" fill="none" stroke="url(#rainbow)" stroke-width="14" stroke-linecap="round" filter="url(#glow)"/>
<!-- Snail -->
<g transform="translate(75,200) rotate(-25)">
<!-- Body -->
<ellipse cx="-5" cy="8" rx="25" ry="9" fill="#7cd68b"/>
<!-- Head -->
<circle cx="18" cy="-5" r="9" fill="#7cd68b"/>
<!-- Antennae -->
<line x1="22" y1="-12" x2="26" y2="-25" stroke="#7cd68b" stroke-width="2" stroke-linecap="round"/>
<line x1="14" y1="-12" x2="10" y2="-25" stroke="#7cd68b" stroke-width="2" stroke-linecap="round"/>
<!-- Eyes -->
<circle cx="26" cy="-26" r="2" fill="#ffffff"/>
<circle cx="10" cy="-26" r="2" fill="#ffffff"/>
<circle cx="26" cy="-26" r="1" fill="#000000"/>
<circle cx="10" cy="-26" r="1" fill="#000000"/>
<!-- Shell -->
<circle cx="-18" cy="0" r="16" fill="url(#shellGrad)" stroke="#8b3f1f" stroke-width="2"/>
<path d="M -10 -6 a8 8 0 1 0 -8 8" fill="none" stroke="#8b3f1f" stroke-width="2" stroke-linecap="round"/>
<!-- Shadow -->
<ellipse cx="-5" cy="18" rx="22" ry="6" fill="#000" opacity="0.2"/>
</g>
<!-- Rocket -->
<g transform="translate(220,100) rotate(35)">
<!-- Body -->
<rect x="-8" y="-30" width="16" height="60" rx="8" fill="#d3d3d3" stroke="#868686" stroke-width="1"/>
<!-- Nose cone -->
<path d="M -8 -30 L0 -48 L8 -30 Z" fill="#ef5350" stroke="#c62828" stroke-width="1"/>
<!-- Window -->
<circle cx="0" cy="-10" r="6" fill="#1e88e5" stroke="#0d47a1" stroke-width="1"/>
<!-- Fins -->
<path d="M -8 20 L -22 30 L -8 30 Z" fill="#ef5350" stroke="#c62828" stroke-width="1"/>
<path d="M 8 20 L 22 30 L 8 30 Z" fill="#ef5350" stroke="#c62828" stroke-width="1"/>
<!-- Flame -->
<path d="M 0 30 C -6 45 -6 55 0 60 C 6 55 6 45 0 30 Z" fill="url(#flameGrad)"/>
<!-- Shadow -->
<ellipse cx="0" cy="66" rx="10" ry="3" fill="#000" opacity="0.2"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFFE0" />
<stop offset="100%" stop-color="#FFD700" />
</radialGradient>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red" />
<stop offset="14.3%" stop-color="orange" />
<stop offset="28.6%" stop-color="yellow" />
<stop offset="42.9%" stop-color="green" />
<stop offset="57.1%" stop-color="blue" />
<stop offset="71.4%" stop-color="indigo" />
<stop offset="85.7%" stop-color="violet" />
<stop offset="100%" stop-color="red" />
</linearGradient>
<pattern id="snailShell" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="brown" stroke="black" stroke-width="1" />
</pattern>
</defs>
<circle cx="50" cy="50" r="30" fill="url(#moonGlow)" />
<path id="track" d="M 50 100 C 100 150, 200 150, 250 250" stroke="url(#rainbow)" stroke-width="10" fill="none" />
<g transform="translate(80,120)">
<ellipse cx="0" cy="10" rx="15" ry="10" fill="lightgreen" />
<circle cx="-10" cy="5" r="5" fill="white" stroke="black" />
<circle cx="10" cy="5" r="5" fill="white" stroke="black" />
<path d="M -15 0 C -5 -20, 5 -20, 15 0" fill="pink" stroke="black" />
<rect x="-5" y="-25" width="10" height="15" fill="url(#snailShell)" stroke="black" />
<animateMotion dur="10s" repeatCount="indefinite">
<mpath href="#track" />
</animateMotion>
</g>
<g transform="translate(100,150)">
<polygon points="-10 0, 10 0, 0 -20" fill="red" />
<rect x="-5" y="0" width="10" height="20" fill="orange" />
<polygon points="-20 20, 20 20, 0 30" fill="yellow" />
<animateMotion dur="5s" repeatCount="indefinite">
<mpath href="#track" />
</animateMotion>
</g>
</svg>
Judge's Analysis
Player 1's submission adheres to the prompt better, showcasing a clear depiction of a snail racing a rocket on a curved rainbow track under a glowing moon.
The composition is visually appealing, with smooth gradients and clear elements.
Meanwhile, Player 2's image is less detailed and the elements are harder to interpret, reducing its overall adherence to the prompt and artistic quality.
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.