Creative Challenge
"Upside-down floating cityscape reflected in a calm lake"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background: Calm Lake -->
<rect x="0" y="0" width="300" height="300" fill="#b3d0eb" />
<circle cx="150" cy="150" r="120" fill="#a8c7d3" />
<!-- Cityscape: Upside-down Floating City -->
<!-- Buildings -->
<rect x="100" y="40" width="40" height="140" fill="#a9a9a9" />
<rect x="60" y="80" width="40" height="100" fill="#858585" />
<rect x="140" y="100" width="60" height="80" fill="#707070" />
<rect x="180" y="60" width="40" height="120" fill="#6b6b6b" />
<!-- Windows -->
<circle cx="110" cy="60" r="5" fill="#FFD700" />
<circle cx="130" cy="60" r="5" fill="#FFD700" />
<circle cx="170" cy="80" r="5" fill="#FFD700" />
<circle cx="160" cy="120" r="5" fill="#FFD700" />
<circle cx="200" cy="100" r="5" fill="#FFD700" />
<!-- Reflection in the Lake -->
<!-- Buildings -->
<rect x="100" y="160" width="40" height="140" fill="#7f99b9" opacity="0.5" />
<rect x="60" y="220" width="40" height="80" fill="#556f91" opacity="0.5" />
<rect x="140" y="220" width="60" height="60" fill="#465875" opacity="0.5" />
<rect x="180" y="180" width="40" height="100" fill="#3e4e6d" opacity="0.5" />
<!-- Windows' Reflection -->
<circle cx="110" cy="190" r="5" fill="#FFD700" opacity="0.5" />
<circle cx="130" cy="230" r="5" fill="#FFD700" opacity="0.5" />
<circle cx="170" cy="230" r="5" fill="#FFD700" opacity="0.5" />
<circle cx="160" cy="260" r="5" fill="#FFD700" opacity="0.5" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Sky background with gradient -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Lake surface with subtle gradient -->
<rect x="0" y="150" width="300" height="150" fill="url(#waterGradient)"/>
<!-- Floating city (upside-down) -->
<g transform="translate(50,50) scale(1, -1)">
<!-- City buildings with varying heights -->
<rect x="0" y="0" width="60" height="100" fill="#4a5568" rx="10"/>
<rect x="70" y="0" width="50" height="120" fill="#3b4d4e" rx="8"/>
<rect x="130" y="0" width="40" height="110" fill="#2d3748" rx="6"/>
<rect x="180" y="0" width="50" height="130" fill="#1e293b" rx="4"/>
<!-- Clock tower with gradient -->
<rect x="240" y="0" width="20" height="150" fill="url(#towerGradient)"/>
<!-- Window details -->
<rect x="10" y="20" width="40" height="30" fill="#f6ad6f" rx="2"/>
<rect x="10" y="60" width="40" height="30" fill="#f6ad6f" rx="2"/>
<rect x="80" y="30" width="30" height="25" fill="#f6ad6f" rx="2"/>
<rect x="140" y="40" width="25" height="20" fill="#f6ad6f" rx="2"/>
<rect x="190" y="50" width="35" height="25" fill="#f6ad6f" rx="2"/>
<!-- Bridge-like structure -->
<path d="M0,130 Q150,130 300,130" fill="#4a5568"/>
</g>
<!-- Reflection of the city -->
<g transform="translate(0,300) scale(1,-1)">
<clipPath id="reflectionClip">
<rect x="0" y="0" width="300" height="150"/>
</clipPath>
<rect x="0" y="0" width="300" height="150" fill="#7f8fa6" opacity="0.6"/>
<g clip-path="url(#reflectionClip)">
<!-- Repeating pattern for reflection -->
<rect x="0" y="0" width="300" height="150" fill="url(#cityPattern)"/>
</g>
</g>
<!-- Stars in the "sky" (reflection of city lights) -->
<g id="stars">
<circle cx="50" cy="20" r="1" fill="#f6ad6f"/>
<circle cx="100" cy="30" r="1" fill="#f6ad6f"/>
<circle cx="150" cy="25" r="1" fill="#f6ad6f"/>
<circle cx="200" cy="35" r="1" fill="#f6ad6f"/>
<circle cx="250" cy="28" r="1" fill="#f6ad6f"/>
</g>
<!-- Gradient definitions -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#1a202c"/>
<stop offset="100%" stop-color="#2d3748"/>
</linearGradient>
<linearGradient id="waterGradient" x1="0" y1="150" x2="0" y2="300">
<stop offset="0%" stop-color="#2d3748"/>
<stop offset="100%" stop-color="#3b4d4e"/>
</linearGradient>
<linearGradient id="towerGradient" x1="0" y1="0" x2="0" y2="150">
<stop offset="0%" stop-color="#4a5568"/>
<stop offset="100%" stop-color="#5f6c7b"/>
</linearGradient>
<pattern id="cityPattern" x="0" y="0" width="300" height="150" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="300" height="150" fill="#3b4d4e"/>
</pattern>
</defs>
</svg>
Judge's Analysis
Player 1's submission effectively captures the prompt by presenting a clear division between the cityscape and its reflection, utilizing distinct colors and shapes to convey the concept of a floating city.
The composition is balanced and visually appealing, with an effective use of color contrast.
Player 2's image, while conceptually interesting, lacks the clarity and visual separation necessary to immediately convey the idea of an upside-down cityscape reflected in a lake.
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
"Surrealist flying fish with mechanical wings over a neon cityscape"
"Flying fish playing chess on floating lily pads"
"Clock tower made of melting candles"
"Agrarian moon, cows grazing in zero gravity fields"
"Melting clock dripping over a crescent moon"
"Octopus reading a newspaper at sunrise"