Creative Challenge
"A futuristic city skyline shaped like musical instruments"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(69, 123, 157); stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(230, 57, 70); stop-opacity:1" />
</linearGradient>
<linearGradient id="fretboard" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255, 214, 10); stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255, 133, 27); stop-opacity:1" />
</linearGradient>
<pattern id="strings" x="0" y="0" width=".1" height=".2">
<line x1="0" y1="0" x2="0" y2="1" stroke="rgb(255,255,255)" stroke-width="0.5" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#cityGradient)" />
<g transform="translate(50,50)">
<!-- Guitar Body -->
<path d="M0,150 C50,120 100,180 150,150 C200,120 250,180 300,150 L300,300 L0,300 Z" fill="#4a4e69" />
<!-- Strings -->
<rect x="50" y="0" width="200" height="300" fill="url(#strings)" fill-opacity="0.2"/>
<!-- Guitar Neck -->
<rect x="225" y="75" width="20" height="200" fill="url(#fretboard)" />
<!-- Piano Building -->
<rect x="75" y="100" width="50" height="150" fill="#f28482">
<animate attributeName="y" from="100" to="90" dur="2s" repeatCount="indefinite" />
</rect>
<rect x="75" y="100" width="10" height="150" fill="black" opacity="0.5">
<animate attributeName="y" from="100" to="90" dur="2s" repeatCount="indefinite" />
</rect>
<!-- Saxophone Tower -->
<path d="M180,100 Q200,80 220,100 L240,150 Q220,185 200,150 Z" fill="#f25f5c">
<animate attributeName="transform" type="rotate" values="0 210 125;2 210 125;0 210 125" dur="4s" repeatCount="indefinite" />
</path>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with animated stars -->
<rect width="300" height="300" fill="linear-gradient(45, #0f0c29, #302b63, #24243e)" />
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.5" />
<circle cx="150" cy="80" r="1" fill="white" opacity="0.5" />
<circle cx="250" cy="30" r="1" fill="white" opacity="0.5" />
<circle cx="120" cy="150" r="1" fill="white" opacity="0.5" />
<circle cx="180" cy="250" r="1" fill="white" opacity="0.5" />
</g>
<!-- Cityscape -->
<g transform="translate(0,180)">
<!-- Guitar-shaped skyscraper -->
<path d="M20 0 C30 0, 40 20, 20 20 L20 100 C15 150, 0 160, 0 180 L40 180 C50 180, 60 170, 20 160 L20 20 C25 15, 30 0, 20 0"
fill="linear-gradient(45, #ff6b6b, #ff8e8e, #ff6b6b)" />
<path d="M20 100 L40 180 L60 100 L80 180 L100 100 L120 180 L140 100 L160 180 L180 100 L200 180 L220 100"
fill="#fff" stroke="#fff" stroke-width="2" opacity="0.7" />
<!-- Violin-shaped tower -->
<path d="M240 0 Q280 40, 280 80 Q270 100, 240 100 L240 0" fill="linear-gradient(45, #4a5568, #6c5ce7)" />
<path d="M240 50 Q270 70, 270 90 Q240 110, 240 130" fill="#fff" opacity="0.3" />
<!-- Saxophone building -->
<path d="M280 0 C290 20, 300 40, 300 60 Q300 80, 280 100 Q260 80, 260 60 Q250 40, 240 20"
fill="linear-gradient(45, #2d3748, #48bb78)" />
<rect x="260" y="30" width="20" height="40" fill="#48bb78" rx="5" />
<!-- Piano-like structure -->
<rect x="0" y="0" width="40" height="180" fill="linear-gradient(0, #000000, #2d3748)" />
<rect x="10" y="160" width="20" height="20" fill="#fff" />
<rect x="0" y="80" width="40" height="20" fill="#fff" opacity="0.2" />
<!-- Bridge and connections -->
<path d="M100 80 Q150 70, 200 80" stroke="#fff" stroke-width="4" opacity="0.7" />
<path d="M200 100 Q230 90, 260 100" stroke="#fff" stroke-width="4" opacity="0.7" />
<!-- Water reflection -->
<path d="M0 180 Q150 -20, 300 180" fill="linear-gradient(45, #667eea, #764ba2)" opacity="0.3" />
<path d="M0 180 Q150 40, 300 180" fill="#fff" opacity="0.1" />
<!-- Transportation -->
<rect x="50" y="170" width="200" height="10" fill="#2d3748" />
<rect x="80" y="165" width="20" height="20" fill="#48bb78" rx="2" />
</g>
</svg>
Judge's Analysis
Player 2's image creatively incorporates elements reminiscent of musical instruments into the skyline, such as the piano keys and curved shapes.
The composition is more cohesive and visually engaging, with a clear adherence to the prompt.
In contrast, Player 1's image lacks clear musical references and appears more abstract, which weakens its connection to the theme.
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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"