Creative Challenge
"Floating cityscape reflected in a teardrop"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Teardrop shape -->
<path id="teardrop" fill="#87CEEB" d="M150,280 C150,260 180,240 200,220 C220,200 240,180 260,160 C280,140 300,120 300,100 C300,80 280,60 260,40 C240,20 220,0 200,0 C180,0 150,20 150,40 C150,60 180,80 200,100 C220,120 240,140 260,160 C280,180 300,200 300,220 C300,240 280,260 260,280 Z" transform="scale(1.1) translate(-15, -20)"/>
<!-- Cityscape -->
<g id="city" transform="translate(70, 80)">
<!-- Buildings -->
<rect fill="#FF69B4" x="0" y="0" width="20" height="80" rx="2"/>
<rect fill="#F2C464" x="30" y="10" width="30" height="100" rx="2"/>
<rect fill="#34A85A" x="70" y="0" width="20" height="120" rx="2"/>
<rect fill="#8B9467" x="110" y="20" width="40" height="80" rx="2"/>
<rect fill="#663399" x="160" y="0" width="30" height="150" rx="2"/>
<!-- Windows -->
<g fill="#FFFFFF" opacity="0.8">
<rect x="5" y="15" width="5" height="5" rx="1"/>
<rect x="15" y="35" width="5" height="5" rx="1"/>
<rect x="40" y="25" width="5" height="5" rx="1"/>
<rect x="65" y="55" width="5" height="5" rx="1"/>
<rect x="115" y="35" width="5" height="5" rx="1"/>
<rect x="130" y="55" width="5" height="5" rx="1"/>
<rect x="165" y="25" width="5" height="5" rx="1"/>
<rect x="180" y="45" width="5" height="5" rx="1"/>
</g>
<!-- Reflection -->
<g id="reflection" transform="translate(0, 200) scale(1, -1)">
<use href="#city" opacity="0.5"/>
</g>
</g>
<!-- Gradient overlay -->
<rect width="300" height="300" fill="none" stroke="none" fill-opacity="0.3">
<animateTransform attributeName="transform" type="translate" from="0 0" to="0 300" dur="10s" repeatCount="indefinite"/>
<linearGradient id="grad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FF69B4" stop-opacity="0.5"/>
<stop offset="0.5" stop-color="#F2C464" stop-opacity="0.2"/>
<stop offset="1" stop-color="#34A85A" stop-opacity="0.1"/>
</linearGradient>
</rect>
<!-- Teardrop highlight -->
<circle cx="150" cy="100" r="10" fill="#FFFFFF" opacity="0.8"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ff6b6b"/>
<stop offset="100%" style="stop-color:#4ecdc4"/>
</linearGradient>
<filter id="blur">
<feGaussianBlur stdDeviation="0.5"/>
</filter>
</defs>
<path d="M150,50 C220,80 240,160 150,240 C60,160 80,80 150,50"
fill="none" stroke="#2c3e50" stroke-width="2"/>
<g transform="translate(150,145) scale(0.4,-0.4)">
<path d="M-100,-100 h200 l-100,-150 z" fill="#34495e"/>
<rect x="-80" y="-80" width="30" height="60" fill="#3498db"/>
<rect x="50" y="-120" width="20" height="100" fill="#e74c3c"/>
<circle cx="0" cy="-50" r="15" fill="#f1c40f"/>
<path d="M-40,-40 h80 l-40,-60 z" fill="#2ecc71"/>
</g>
<g transform="translate(150,155) scale(0.4,0.4)">
<path d="M-100,-100 h200 l-100,-150 z" fill="#34495e" opacity="0.6"/>
<rect x="-80" y="-80" width="30" height="60" fill="#3498db" opacity="0.6"/>
<rect x="50" y="-120" width="20" height="100" fill="#e74c3c" opacity="0.6"/>
<circle cx="0" cy="-50" r="15" fill="#f1c40f" opacity="0.6"/>
<path d="M-40,-40 h80 l-40,-60 z" fill="#2ecc71" opacity="0.6"/>
</g>
<ellipse cx="150" cy="200" rx="40" ry="10" fill="#2c3e50" opacity="0.3"/>
<path d="M130,180 Q150,220 170,180" fill="none" stroke="#fff" stroke-width="0.5" opacity="0.5"/>
<circle cx="150" cy="100" r="3" fill="#fff"/>
<circle cx="170" cy="120" r="2" fill="#fff"/>
<circle cx="130" cy="110" r="2" fill="#fff"/>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the concept of a 'floating cityscape reflected in a teardrop' by incorporating a teardrop shape that contains city-like geometric elements, creating a cohesive and imaginative representation.
The use of symmetry and color contrast adds depth and visual appeal.
Player 1's design, while colorful, lacks the direct integration of a teardrop shape and feels less connected 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
"A clockwork butterfly unveiling a hidden city on its left wing"
"Dancing cactus under a disco ball"
"Cat in a spacesuit playing chess with a ghost"
"A giraffe juggling planets under the ocean"
"A feathered dinosaur with a top hat, sipping tea in a Victorian-style parlor"
"Cat in a comet sipping tea through a straw"