Creative Challenge
"Dancing skyscraper with human legs"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#c0deed" />
<!-- Skyscraper body -->
<rect x="100" y="50" width="100" height="200" fill="#b0bec5" />
<rect x="115" y="10" width="70" height="40" fill="#90a4ae" />
<!-- Windows -->
<rect x="115" y="60" width="20" height="20" fill="#536dfe" />
<rect x="145" y="60" width="20" height="20" fill="#536dfe" />
<rect x="175" y="60" width="20" height="20" fill="#536dfe" />
<rect x="115" y="90" width="20" height="20" fill="#536dfe" />
<rect x="145" y="90" width="20" height="20" fill="#536dfe" />
<rect x="175" y="90" width="20" height="20" fill="#536dfe" />
<rect x="115" y="120" width="20" height="20" fill="#536dfe" />
<rect x="145" y="120" width="20" height="20" fill="#536dfe" />
<rect x="175" y="120" width="20" height="20" fill="#536dfe" />
<rect x="115" y="150" width="20" height="20" fill="#536dfe" />
<rect x="145" y="150" width="20" height="20" fill="#536dfe" />
<rect x="175" y="150" width="20" height="20" fill="#536dfe" />
<!-- Skyscraper legs -->
<rect x="100" y="250" width="100" height="50" fill="#90a4ae" />
<rect x="90" y="300" width="120" height="30" fill="#90a4ae" />
<!-- Human legs -->
<rect x="125" y="180" width="20" height="70" fill="#f48fb1" />
<rect x="155" y="180" width="20" height="70" fill="#f48fb1" />
</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:#4facfe;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00f2fe;stop-opacity:1" />
</linearGradient>
<linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#2c3e50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#34495e;stop-opacity:1" />
</linearGradient>
<linearGradient id="legsGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#e74c3c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#c0392b;stop-opacity:1" />
</linearGradient>
<pattern id="windowPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="4" height="4" fill="yellow"/>
<rect x="6" width="4" height="4" fill="yellow"/>
<rect y="6" width="4" height="4" fill="yellow"/>
<rect x="6" y="6" width="4" height="4" fill="yellow"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g transform="translate(150, 150)">
<!-- Skyscraper -->
<rect x="-40" y="-100" width="80" height="200" rx="10" ry="10" fill="url(#buildingGradient)" stroke="#2c3e50" stroke-width="2"/>
<!-- Windows -->
<g fill="url(#windowPattern)" transform="translate(-40, -90)">
<g id="windows">
<rect x="0" y="0" width="8" height="8"/>
<rect x="0" y="10" width="8" height="8"/>
<rect x="0" y="20" width="8" height="8"/>
<rect x="0" y="30" width="8" height="8"/>
<rect x="0" y="40" width="8" height="8"/>
<rect x="0" y="50" width="8" height="8"/>
<rect x="0" y="60" width="8" height="8"/>
<rect x="0" y="70" width="8" height="8"/>
<rect x="0" y="80" width="8" height="8"/>
<rect x="0" y="90" width="8" height="8"/>
</g>
<use href="#windows" x="20"/>
<use href="#windows" x="40"/>
</g>
<!-- Human Legs -->
<g transform="translate(0, 100)">
<g>
<!-- Left Leg -->
<path d="M0,0 C-10,20 -10,60 0,80 L5,80 C15,60 15,20 5,0 Z" fill="url(#legsGradient)" stroke="#c0392b" stroke-width="2"/>
<!-- Right Leg -->
<path d="M10,0 C20,20 20,60 10,80 L15,80 C25,60 25,20 15,0 Z" fill="url(#legsGradient)" stroke="#c0392b" stroke-width="2"/>
</g>
<!-- Movement Lines -->
<path d="M-15,80 Q-20,90 -15,100" stroke="#e74c3c" stroke-width="2" fill="none"/>
<path d="M25,80 Q30,90 25,100" stroke="#e74c3c" stroke-width="2" fill="none"/>
</g>
<!-- Dance Motion -->
<g>
<circle cx="-60" cy="-80" r="5" fill="#f1c40f" opacity="0.6">
<animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="60" cy="-80" r="5" fill="#f1c40f" opacity="0.6">
<animateTransform attributeName="transform" type="rotate" from="360" to="0" dur="4s" repeatCount="indefinite"/>
</circle>
<path d="M-50,-90 C-40,-100 -10,-100 0,-90" stroke="#f1c40f" stroke-width="2" fill="none">
<animate attributeName="d" values="
M-50,-90 C-40,-100 -10,-100 0,-90;
M-50,-85 C-35,-95 -15,-95 5,-85;
M-50,-90 C-40,-100 -10,-100 0,-90
" dur="2s" repeatCount="indefinite"/>
</path>
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission is more creative and visually appealing, with a dynamic pose that better suggests the concept of a 'dancing skyscraper.' The addition of arms and a more expressive stance enhances the adherence to the prompt.
The use of a gradient background and contrasting colors adds to the visual appeal, making it technically stronger than Player 1's simpler and more static depiction.
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 juggling colorful, oversized dice under a disco ball"
"Dancing octopus wearing a top hat and monocle under a disco ball"
"Mystical mime juggling glowing, translucent jellyfish in neon moonlight"
"Clocktower sprouting giant sunflowers, clock hands as petals"
"A cloud wearing sunglasses and a fedora sipping lemonade"
"A giraffe wearing 3D glasses watching a movie on a spaceship"