Creative Challenge
"Intergalactic snail race on a rainbow comet track"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cometGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="40%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="60%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
<stop offset="80%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(128,0,128);stop-opacity:1" />
</linearGradient>
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:0" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="#000" />
<path d="M 100,150 C 100,250 200,250 200,150 S 100,50 100,150" stroke="url(#cometGradient)" stroke-width="5" fill="none" />
<path d="M 150,100 C 150,200 250,200 250,100 S 150,0 150,100" stroke="url(#cometGradient)" stroke-width="5" fill="none" />
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="10" fill="url(#starGradient)" />
<circle cx="0" cy="0" r="5" fill="#fff" />
</g>
<g transform="translate(100,100)">
<path d="M 0,0 C 20,0 20,20 0,20 Z" fill="#00ff00" />
<circle cx="10" cy="10" r="5" fill="#00ff00" />
</g>
<g transform="translate(200,200)">
<path d="M 0,0 C 20,0 20,20 0,20 Z" fill="#0000ff" />
<circle cx="10" cy="10" r="5" fill="#0000ff" />
</g>
<g transform="translate(120,170)">
<path d="M 0,0 C 20,0 20,20 0,20 Z" fill="#ff00ff" />
<circle cx="10" cy="10" r="5" fill="#ff00ff" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="spaceGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#000428"/>
<stop offset="100%" stop-color="#004e92"/>
</radialGradient>
<linearGradient id="cometGrad" x1="0%" y1="50%" x2="100%" y2="50%">
<stop offset="0%" stop-color="#FF0864"/>
<stop offset="25%" stop-color="#FF5C00"/>
<stop offset="50%" stop-color="#FFDD00"/>
<stop offset="75%" stop-color="#00E896"/>
<stop offset="100%" stop-color="#00B4FF"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<path id="track" d="M20 220 Q150 50 280 80" fill="none"/>
</defs>
<rect width="300" height="300" fill="url(#spaceGrad)"/>
<!-- Comet track -->
<path d="M20 220 Q150 50 280 80" fill="none" stroke="url(#cometGrad)" stroke-width="8" stroke-linecap="round" stroke-dasharray="4 12" filter="url(#glow)"/>
<!-- Racing snails -->
<g transform="translate(-30,0)">
<g class="snail" transform="translate(100,190)">
<path d="M0 0a20 20 0 1 1 0 40 20 20 0 0 1 0-40z" fill="#FF55B0"/>
<path d="M20 20Q40-10 60 20" stroke="#FFB3E5" stroke-width="4"/>
<circle cx="65" cy="15" r="3" fill="#FFF"/>
<animateMotion dur="8s" repeatCount="indefinite" fill="freeze">
<mpath xlink:href="#track"/>
</animateMotion>
</g>
<g class="snail" transform="translate(60,200)">
<path d="M0 0a24 24 0 1 1 0 48 24 24 0 0 1 0-48z" fill="#00F2FE"/>
<path d="M24 24Q50-15 76 24" stroke="#A6FFFE" stroke-width="4"/>
<circle cx="80" cy="20" r="3" fill="#FFF"/>
<animateMotion dur="7s" repeatCount="indefinite" fill="freeze">
<mpath xlink:href="#track"/>
</animateMotion>
</g>
</g>
<!-- Celestial bodies -->
<circle cx="240" cy="60" r="20" fill="#FFE459" filter="url(#glow)"/>
<circle cx="250" cy="50" r="5" fill="#FFF" filter="url(#glow)"/>
<!-- Star field -->
<g fill="#FFF" opacity="0.8">
<circle cx="50" cy="80" r="1.2"/>
<circle cx="150" cy="40" r="0.8"/>
<circle cx="280" cy="150" r="1.5"/>
<circle cx="200" cy="250" r="1"/>
</g>
<!-- Speed trails -->
<g stroke="#FFF" opacity="0.4" stroke-width="2">
<path d="M40 210l15-10" stroke-dasharray="2"/>
<path d="M120 160l20-25" stroke-dasharray="3"/>
<path d="M200 110l25-15" stroke-dasharray="4"/>
</g>
</svg>
Judge's Analysis
Player 1's submission captures the theme of an intergalactic snail race effectively by incorporating snail-like shapes on a rainbow track, aligning well with the prompt.
The use of color and the depiction of movement enhance the visual appeal and creativity.
Player 2's image, while visually appealing with a vibrant comet trail, lacks the specific elements of a snail race, making Player 1's entry more aligned with 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
"Floating clock made of clouds in a stormy sky"
"A lighthouse shining beams through a swirling night storm"
"Volcano spewing rainbow-colored lava under a crescent moon"
"Octopus juggling planets under the ocean"
"Van Gogh's Starry Night with neon-colored galaxies"
"Solar-powered jellyfish floating above a cityscape, in geometric style"