Creative Challenge
"A steampunk cityscape built entirely on floating lily pads"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#a0c4ff" />
<stop offset="100%" stop-color="#f0f8ff" />
</linearGradient>
<radialGradient id="lilypad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#388e3c" />
<stop offset="50%" stop-color="#1b5e20" />
<stop offset="100%" stop-color="#003300" />
</radialGradient>
<pattern id="rivets" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="2.5" cy="2.5" r="1" fill="#8d6e63" />
<circle cx="7.5" cy="2.5" r="1" fill="#8d6e63" />
<circle cx="2.5" cy="7.5" r="1" fill="#8d6e63" />
<circle cx="7.5" cy="7.5" r="1" fill="#8d6e63" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sky)" />
<g transform="translate(20 180) scale(0.7)">
<ellipse cx="50" cy="80" rx="60" ry="30" fill="url(#lilypad)" />
<g transform="translate(30 50)">
<path d="M0 0h40v60h-40z" fill="#4a148c" />
<rect x="5" y="5" width="30" height="50" fill="url(#rivets)" />
<circle cx="20" cy="20" r="10" fill="gold" />
<polygon points="10,60 30,60 20,70" fill="silver" />
</g>
</g>
<g transform="translate(120 220) scale(0.5)">
<ellipse cx="50" cy="80" rx="60" ry="30" fill="url(#lilypad)" />
<g transform="translate(20 40)">
<rect x="0" y="0" width="60" height="80" rx="10" fill="#a1887f" />
<path d="M10 10 L50 10 L40 30 L20 30z" fill="#3e2723" />
<circle cx="30" cy="50" r="15" fill="lightblue" />
<g transform="translate(10,60)">
<path d="M0 20c10 -10 30 -10 40 0" stroke="black" stroke-width="2" fill="none" />
<circle cx="0" cy="20" r="2" fill="red" />
<circle cx="40" cy="20" r="2" fill="red" />
</g>
</g>
</g>
<g transform="translate(220 150) scale(0.9)">
<ellipse cx="50" cy="80" rx="60" ry="30" fill="url(#lilypad)" />
<g transform="translate(10,30)">
<path d="M0 0 L80 0 L80 40 L40 70 L0 40z" fill="chocolate"/>
<rect x="15" y="15" width="15" height="15" fill="yellow" />
<rect x="50" y="15" width="15" height="15" fill="yellow" />
<path d="M20 45 L60 45 L50 60 L30 60z" fill="tomato"/>
<ellipse cx="40" cy="50" rx="8" ry="5" fill="white"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#c6e2ff" />
<!-- Sun -->
<circle cx="250" cy="50" r="30" fill="#ffd700" />
<!-- Lily pads -->
<circle cx="50" cy="200" r="40" fill="#228b22" />
<circle cx="200" cy="100" r="60" fill="#228b22" />
<circle cx="150" cy="250" r="50" fill="#228b22" />
<!-- Buildings on lily pads -->
<rect x="30" y="160" width="40" height="60" fill="#cd853f" />
<rect x="160" y="70" width="60" height="90" fill="#cd853f" />
<rect x="120" y="220" width="50" height="40" fill="#cd853f" />
<!-- Gears decorations -->
<circle cx="55" cy="195" r="8" fill="#a9a9a9" />
<circle cx="210" cy="110" r="12" fill="#a9a9a9" />
<circle cx="150" cy="245" r="10" fill="#a9a9a9" />
<!-- Airship -->
<ellipse cx="100" cy="50" rx="30" ry="15" fill="#708090" />
<polygon points="100,35 85,50 100,55" fill="#708090" />
<rect x="90" y="50" width="20" height="25" fill="#708090" />
<!-- Birds -->
<path d="M50 20 Q60 10 70 20" stroke="#000" stroke-width="2" fill="none" />
<path d="M200 40 Q190 30 180 40" stroke="#000" stroke-width="2" fill="none" />
</svg>
Judge's Analysis
Player 2's image captures the essence of a steampunk cityscape with a more intricate arrangement of elements and a better representation of floating lily pads.
The composition is more balanced and visually appealing, with a clear indication of structures and machinery fitting the steampunk theme.
Player 1's submission is simpler and lacks the complexity and creativity seen in Player 2's work.
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
"Whale floating in a teacup on a starry night sky"
"An owl wearing a monocle, reading a newspaper under a mushroom umbrella"
"Surreal cityscape inside a giant fishbowl"
"Frog playing a grand piano under a starry sky"
"Octopus juggling planets under a starlit ocean"
"A jellyfish cityscape, buildings glowing like bioluminescent tentacles"