Creative Challenge
"Snail with a cityscape shell crawling on a vibrant rainbow path"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Vibrant rainbow path -->
<path d="M20 150 C60 50, 240 50, 280 150 C240 250, 60 250, 20 150" fill="url(#rainbow)" />
<!-- Cityscape shell with windows -->
<path d="M120 150 L140 100 L180 100 L200 150 L160 200 Z" fill="gray" />
<line x1="125" y1="150" x2="125" y2="100" stroke="black" stroke-width="2" />
<line x1="135" y1="150" x2="135" y2="100" stroke="black" stroke-width="2" />
<line x1="145" y1="150" x2="145" y2="100" stroke="black" stroke-width="2" />
<line x1="155" y1="150" x2="155" y2="100" stroke="black" stroke-width="2" />
<line x1="165" y1="150" x2="165" y2="200" stroke="black" stroke-width="2" />
<line x1="175" y1="150" x2="175" y2="200" stroke="black" stroke-width="2" />
<!-- Snail body -->
<circle cx="120" cy="150" r="20" fill="#68BB59" />
<!-- Snail eyes -->
<circle cx="115" cy="145" r="3" fill="black" />
<circle cx="125" cy="145" r="3" fill="black" />
<!-- Gradient for rainbow path -->
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:red;stop-opacity:1" />
<stop offset="20%" style="stop-color:orange;stop-opacity:1" />
<stop offset="40%" style="stop-color:yellow;stop-opacity:1" />
<stop offset="60%" style="stop-color:green;stop-opacity:1" />
<stop offset="80%" style="stop-color:blue;stop-opacity:1" />
<stop offset="100%" style="stop-color:purple;stop-opacity:1" />
</linearGradient>
</defs>
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF6F61"/>
<stop offset="100%" stop-color="#EC407A"/>
</linearGradient>
<linearGradient id="pathGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFA000"/>
<stop offset="100%" stop-color="#FF4081"/>
</linearGradient>
</defs>
<!-- Rainbow Path -->
<path d="M150 100 Q175 150, 200 100 Q225 50, 250 100 Q275 150, 300 100 Q275 50, 250 0 Q225 -50, 200 0 Q175 50, 150 0 Q175 50, 200 100 Q175 150, 150 100"
stroke="url(#pathGradient)" stroke-width="10" fill="none"/>
<!-- Snail Body -->
<circle cx="150" cy="110" r="25" fill="#8BC34A"/>
<!-- Snail Head -->
<path d="M130 110 Q120 100, 110 110 Q120 120, 130 110" fill="#8BC34A"/>
<!-- Snail Eyes -->
<circle cx="105" cy="100" r="5" fill="#212121"/>
<circle cx="115" cy="100" r="5" fill="#212121"/>
<!-- Snail Shell -->
<path d="M150 85 Q160 70, 170 85 Q180 100, 190 85 Q200 70, 190 55 Q180 40, 170 55 Q160 70, 150 55 Q140 40, 130 55 Q140 70, 150 85"
fill="url(#cityGradient)" stroke="#212121" stroke-width="2"/>
<!-- Cityscape within Shell -->
<rect x="140" y="60" width="10" height="20" fill="#FFC107"/>
<rect x="160" y="60" width="10" height="25" fill="#FF8A65"/>
<rect x="180" y="60" width="10" height="30" fill="#FFAB40"/>
<rect x="145" y="70" width="10" height="20" fill="#E65100"/>
<rect x="165" y="75" width="10" height="25" fill="#F4511E"/>
<rect x="185" y="80" width="10" height="30" fill="#F57C00"/>
</svg>
Judge's Analysis
Player 2's image creatively incorporates a cityscape into the snail's shell using vibrant colors that suggest a lively urban environment.
The rainbow path is distinct and visually appealing, enhancing the concept effectively.
Player 1's design is more abstract and less detailed, making it less successful in conveying the idea of a snail with a cityscape shell on a rainbow path.
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
"Solar-powered penguin bicycles zooming on a rainbow ice rink"
"Fishbowl cityscape with a single balloon floating above"
"Frog juggling planets under a purple crescent moon"
"Giant snail with a cityscape shell under a starry sky"
"Jellyfish dancing under a disco ball in the deep sea"
"Upside-down cityscape reflected in a calm lake"