Creative Challenge
"Floating cityscape on giant lily pads in a moonlit pond"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Moonlit Pond -->
<rect x="0" y="0" width="300" height="300" fill="url(#moonlit-pond)" />
<linearGradient id="moonlit-pond" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#3498db" stop-opacity="0.8" />
<stop offset="1" stop-color="#2ecc71" stop-opacity="0.4" />
</linearGradient>
<!-- Giant Lily Pads -->
<g transform="translate(50, 150)">
<circle cx="0" cy="0" r="50" fill="#8bc34a" />
<circle cx="100" cy="0" r="50" fill="#8bc34a" />
<circle cx="50" cy="50" r="50" fill="#8bc34a" />
</g>
<!-- Floating Cityscape -->
<g transform="translate(50, 50)">
<rect x="-50" y="-50" width="100" height="50" fill="#f1c40f" rx="10" />
<rect x="-30" y="-30" width="60" height="30" fill="#e67e73" rx="5" />
<rect x="-10" y="-10" width="20" height="10" fill="#9b59b6" rx="2" />
<path d="M -40, -40 L -40, -20 L -20, -20 L -20, -40 Z" fill="#2c3e50" />
<path d="M -10, -40 L -10, -20 L 0, -20 L 0, -40 Z" fill="#2c3e50" />
<path d="M 20, -40 L 20, -20 L 40, -20 L 40, -40 Z" fill="#2c3e50" />
<circle cx="0" cy="-50" r="10" fill="#2c3e50" />
</g>
<!-- Water Ripples -->
<g transform="translate(50, 150)">
<circle cx="0" cy="0" r="20" fill="url(#water-ripple-1)" />
<circle cx="100" cy="0" r="20" fill="url(#water-ripple-2)" />
<circle cx="50" cy="50" r="20" fill="url(#water-ripple-3)" />
</g>
<radialGradient id="water-ripple-1" cx="0" cy="0" r="20" fx="0" fy="0">
<stop offset="0" stop-color="#3498db" stop-opacity="0.6" />
<stop offset="1" stop-color="#3498db" stop-opacity="0.2" />
</radialGradient>
<radialGradient id="water-ripple-2" cx="0" cy="0" r="20" fx="0" fy="0">
<stop offset="0" stop-color="#2ecc71" stop-opacity="0.6" />
<stop offset="1" stop-color="#2ecc71" stop-opacity="0.2" />
</radialGradient>
<radialGradient id="water-ripple-3" cx="0" cy="0" r="20" fx="0" fy="0">
<stop offset="0" stop-color="#8bc34a" stop-opacity="0.6" />
<stop offset="1" stop-color="#8bc34a" stop-opacity="0.2" />
</radialGradient>
<!-- Moon -->
<circle cx="250" cy="50" r="20" fill="#f7dc6f" />
<circle cx="250" cy="50" r="10" fill="#fff" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFF9E6" />
<stop offset="100%" stop-color="#F5F5DC" />
</radialGradient>
<radialGradient id="pondGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1E3D59" />
<stop offset="100%" stop-color="#294C6D" />
</radialGradient>
<linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FFC1C1" />
<stop offset="100%" stop-color="#FF6969" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#pondGradient)" />
<circle cx="230" cy="50" r="40" fill="url(#moonGradient)" />
<g>
<ellipse cx="90" cy="220" rx="40" ry="15" fill="#2A8219" />
<rect x="75" y="190" width="30" height="30" fill="url(#buildingGradient)" />
<polygon points="75,190 90,170 105,190" fill="#FF9E9E" />
<rect x="82" y="197" width="5" height="7" fill="#FFD700" />
<rect x="90" y="197" width="5" height="7" fill="#FFD700" />
</g>
<g>
<ellipse cx="200" cy="250" rx="50" ry="20" fill="#2A8219" />
<rect x="185" y="220" width="30" height="30" fill="url(#buildingGradient)" />
<polygon points="185,220 200,200 215,220" fill="#FF9E9E" />
<rect x="192" y="227" width="5" height="7" fill="#FFD700" />
<rect x="200" y="227" width="5" height="7" fill="#FFD700" />
</g>
<g opacity="0.5">
<circle cx="230" cy="50" r="45" fill="none" stroke="#FFF9E6" stroke-width="2" />
<circle cx="230" cy="50" r="50" fill="none" stroke="#FFF9E6" stroke-width="1" />
</g>
<g>
<ellipse cx="150" cy="180" rx="50" ry="20" fill="#2A8219" />
<rect x="135" y="150" width="30" height="30" fill="url(#buildingGradient)" />
<polygon points="135,150 150,130 165,150" fill="#FF9E9E" />
<rect x="142" y="157" width="5" height="7" fill="#FFD700" />
<rect x="150" y="157" width="5" height="7" fill="#FFD700" />
</g>
</svg>
Judge's Analysis
Player 2's submission adheres more closely to the prompt with a clear depiction of a cityscape on lily pads, highlighted by the moonlit setting.
The visual composition is stronger, with distinct elements that are easily recognizable, enhancing the overall appeal.
Player 1's image lacks clarity in representing the cityscape concept and does not effectively capture the moonlit atmosphere.
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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Cat soaring on a hoverboard under a glowing moon"