Creative Challenge
"Gigantic snail wearing a cityscape as its shell"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8e7c7c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#d1bd9a;stop-opacity:1" />
</linearGradient>
<linearGradient id="cityGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4f94cd;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4f6fc8;stop-opacity:1" />
</linearGradient>
<pattern id="windowPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect x="0" y="0" width="10" height="10" fill="#ffffff"/>
<line x1="5" y1="0" x2="5" y2="10" stroke="#c4c4c4" stroke-width="1"/>
<line x1="0" y1="5" x2="10" y2="5" stroke="#c4c4c4" stroke-width="1"/>
</pattern>
</defs>
<g transform="translate(150,150)">
<path d="M-30 30 Q-60 0 -30 -30 Q0 -60 30 -30 Q60 0 30 30 Q0 60 -30 30 Z" fill="url(#shellGradient)"/>
<path d="M-30 30 Q-60 0 -80 40 Q-120 80 -60 120 Q0 170 60 120 Q120 80 80 40 Q60 0 30 30" fill="brown" opacity="0.5"/>
<g id="cityscape" transform="scale(0.5) translate(-40, -40)">
<rect x="-20" y="-30" width="10" height="30" fill="url(#cityGradient)" />
<rect x="10" y="-50" width="15" height="50" fill="url(#cityGradient)" />
<rect x="40" y="-40" width="20" height="40" fill="url(#cityGradient)" />
<rect x="70" y="-20" width="10" height="30" fill="url(#cityGradient)" />
<polygon points="40,-50 30,-60 50,-60" fill="#ffe135"/>
<rect x="-10" y="-35" width="20" height="5" fill="url(#windowPattern)"/>
<rect x="15" y="-55" width="10" height="5" fill="url(#windowPattern)"/>
<rect x="45" y="-45" width="15" height="5" fill="url(#windowPattern)"/>
</g>
<circle cx="50" cy="60" r="5" fill="#8a6536" />
<circle cx="-50" cy="60" r="5" fill="#8a6536" />
<path d="M 0 0 Q 10 20 0 40 Q -10 20 0 0" fill="none" stroke="#8a6536" stroke-width="10" />
<path d="M 0 -100 Q 20 -150 40 -100 Q 20 -50 0 -100" fill="none" stroke="#8a6536" stroke-width="8" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="shellGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.6">
<stop offset="0%" stop-color="#e0f7fa"/>
<stop offset="50%" stop-color="#80deea"/>
<stop offset="100%" stop-color="#006064"/>
</radialGradient>
<linearGradient id="cityGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="#ff8a65"/>
<stop offset="100%" stop-color="#d84315"/>
</linearGradient>
<pattern id="buildingPattern" patternUnits="userSpaceOnUse" width="10" height="30">
<rect x="0" y="0" width="10" height="30" fill="url(#cityGradient)"/>
<rect x="2" y="15" width="2" height="5" fill="white"/>
<rect x="6" y="5" width="2" height="5" fill="white"/>
<rect x="2" y="25" width="2" height="5" fill="white"/>
</pattern>
</defs>
<circle cx="150" cy="150" r="90" fill="url(#shellGradient)" />
<circle cx="150" cy="150" r="80" fill="url(#buildingPattern)" mask="url(#mask)" />
<mask id="mask">
<rect x="0" y="0" width="300" height="300" fill="white"/>
<ellipse cx="150" cy="150" rx="70" ry="80" fill="black"/>
</mask>
<path d="M180,200 C170,180 160,160 150,150 C140,140 130,130 120,125 Q105,120 100,140 Q95,160 110,170 Q125,180 130,200"
fill="#558b2f"/>
<rect x="70" y="200" width="70" height="30" fill="#004d40"/>
<path d="M70,200 C90,180 110,180 130,200" fill="#004d40"/>
<circle cx="100" cy="95" r="25" fill="#ffccbc" />
<circle cx="200" cy="75" r="20" fill="#ffccbc" />
<circle cx="180" cy="50" r="15" fill="#ffccbc" />
</svg>
Judge's Analysis
Player 1's image creatively integrates the cityscape as part of the snail's shell, making it clear and visually coherent.
The use of vertical elements effectively represents skyscrapers, aligning well with the idea.
While Player 2's image is visually appealing, it lacks clear representation of a cityscape as the snail's shell, making Player 1's submission more adherent to 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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"