Creative Challenge
"A cityscape shaped like a giant sleeping cat, Pointillism"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="catGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#808080;stop-opacity:1" />
<stop offset="100%" style="stop-color:#404040;stop-opacity:1" />
</linearGradient>
<linearGradient id="backgroundGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#1a1a3a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2a3a5a;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<g id="catOutline">
<path d="M150,50 Q250,50 300,100 L280,120 Q240,80 200,100 Q160,120 120,100 Q80,80 40,100 L20,120 Q80,150 150,150 Q220,150 280,120 L290,130 Q260,100 230,80 Q200,60 170,80 Q140,100 110,80 Q80,60 50,80 L40,100 Q100,70 150,50 Z" fill="url(#catGradient)" />
</g>
<g id="cityElements">
<!-- Head Details -->
<circle cx="150" cy="80" r="15" fill="#ff8080" />
<circle cx="140" cy="70" r="5" fill="#ffffff" />
<circle cx="160" cy="70" r="5" fill="#ffffff" />
<!-- Body -->
<g transform="translate(100,120)">
<circle cx="0" cy="0" r="3" fill="#808080" />
<circle cx="5" cy="0" r="3" fill="#808080" />
<circle cx="-5" cy="0" r="3" fill="#808080" />
</g>
<!-- Buildings -->
<g transform="translate(200,180)">
<circle cx="0" cy="0" r="5" fill="#4040ff" />
<circle cx="5" cy="0" r="4" fill="#4040ff" />
<circle cx="-5" cy="0" r="4" fill="#4040ff" />
</g>
<!-- Windows -->
<g transform="translate(220,170)">
<circle cx="0" cy="0" r="2" fill="#ffff00" />
<circle cx="4" cy="0" r="2" fill="#ffff00" />
<circle cx="-4" cy="0" r="2" fill="#ffff00" />
</g>
<!-- Street -->
<g transform="translate(100,250)">
<circle cx="0" cy="0" r="2" fill="#808080" />
<circle cx="4" cy="0" r="2" fill="#808080" />
<circle cx="-4" cy="0" r="2" fill="#808080" />
</g>
<!-- Tail -->
<path d="M280,130 Q260,100 240,80" stroke="#404040" stroke-width="4" fill="none" />
</g>
<g id="details">
<!-- Eyes -->
<circle cx="140" cy="70" r="3" fill="#ffffff" />
<circle cx="160" cy="70" r="3" fill="#ffffff" />
<!-- Nose -->
<circle cx="150" cy="80" r="5" fill="#ff6060" />
<!-- Whiskers -->
<line x1="130" y1="80" x2="120" y2="70" stroke="#ffffff" stroke-width="1" />
<line x1="170" y1="80" x2="180" y2="70" stroke="#ffffff" stroke-width="1" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(70,130,180);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(135,206,250);stop-opacity:1" />
</radialGradient>
<pattern id="dots" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="1" fill="#ffdd55" />
</pattern>
<linearGradient id="catGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(105,105,105);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(169,169,169);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<path d="M30,180 Q150,80 270,180 Q240,250 150,280 Q60,250 30,180" fill="url(#catGradient)" />
<circle cx="100" cy="200" r="8" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="90" cy="185" r="5" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="110" cy="170" r="7" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="200" cy="210" r="8" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="220" cy="195" r="6" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="230" cy="170" r="5" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="260" cy="190" r="7" fill="url(#dots)" stroke="black" stroke-width="1" />
<circle cx="150" cy="150" r="10" fill="url(#dots)" stroke="black" stroke-width="1" />
<path d="M155 90 Q152 70 160 55" stroke="#444" stroke-width="2" fill="none" />
<path d="M145 90 Q148 70 140 55" stroke="#444" stroke-width="2" fill="none" />
<circle cx="145" cy="95" r="3" fill="#444" />
<circle cx="155" cy="95" r="3" fill="#444" />
<path d="M150 105 Q150 110 145 110 Q150 110 155 110 Q150 110 150 105" fill="#444" />
</svg>
Judge's Analysis
Player 2's image captures the concept of a cityscape shaped like a cat more effectively with a clearer silhouette and the use of pointillism to represent city lights.
The composition is more cohesive and visually appealing, adhering closely to the prompt.
Player 1's submission is less defined and doesn't convey the theme as distinctly.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"