Creative Challenge
"Surreal umbrella raining clocks over a desert landscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Landscape -->
<rect x="0" y="150" width="300" height="150" fill="#FDD5A7" />
<!-- Sun -->
<circle cx="50" cy="50" r="30" fill="#F9A602" />
<!-- Clouds -->
<circle cx="100" cy="50" r="20" fill="#FFFFFF" />
<circle cx="130" cy="60" r="25" fill="#FFFFFF" />
<circle cx="160" cy="50" r="20" fill="#FFFFFF" />
<!-- Umbrella -->
<path d="M100 150 Q150 50 200 150 Q150 250 100 150" fill="#FF5851" />
<line x1="120" y1="150" x2="180" y2="150" stroke="#FFFFFF" stroke-width="3" />
<line x1="150" y1="150" x2="150" y2="110" stroke="#FFFFFF" stroke-width="3" />
<!-- Clocks -->
<circle cx="120" cy="100" r="10" fill="#FFFFFF" />
<text x="120" y="105" font-size="8" fill="#000000" text-anchor="middle">9:00</text>
<circle cx="170" cy="120" r="15" fill="#FFFFFF" />
<text x="170" y="125" font-size="10" fill="#000000" text-anchor="middle">12:00</text>
<circle cx="140" cy="190" r="12" fill="#FFFFFF" />
<text x="140" y="195" font-size="9" fill="#000000" text-anchor="middle">3:00</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="umbrellaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff7f50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff1493;stop-opacity:1" />
</linearGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#87cefa;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4682b4;stop-opacity:1" />
</linearGradient>
<pattern id="sandPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<rect width="100%" height="100%" fill="#d2b48c" />
<circle cx="10" cy="10" r="5" fill="#deb887" />
</pattern>
<symbol id="clock" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="white" stroke="#8b0000" stroke-width="2"/>
<line x1="12" y1="12" x2="12" y2="6" stroke="#8b0000" stroke-width="2"/>
<line x1="12" y1="12" x2="18" y2="12" stroke="#8b0000" stroke-width="2"/>
<text x="12" y="17" font-family="Arial" font-size="2.5" text-anchor="middle" fill="#8b0000">12</text>
</symbol>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<rect width="300" height="80" fill="url(#sandPattern)" y="220"/>
<g transform="translate(150, 150)">
<path d="M-70,0 Q-50,-90 0,-80 Q50,-90 70,0 Z" fill="url(#umbrellaGradient)" />
<path d="M-80,0 Q0,100 80,0 Q100,20 100,60 Q70,80 30,60 Q0,80 -30,60 Q-70,80 -100,60 Q-100,20 -80,0 Z" fill="url(#umbrellaGradient)" opacity="0.5"/>
<rect x="-10" y="0" width="20" height="60" fill="#8b4513" />
<ellipse cx="0" cy="5" rx="20" ry="5" fill="none" stroke="#8b0000" stroke-width="3" />
</g>
<g>
<use xlink:href="#clock" x="70" y="10" width="10" height="10" />
<use xlink:href="#clock" x="-50" y="50" width="10" height="10" />
<use xlink:href="#clock" x="-30" y="110" width="10" height="10" />
<use xlink:href="#clock" x="20" y="70" width="10" height="10" />
<use xlink:href="#clock" x="-60" y="150" width="10" height="10" />
<use xlink:href="#clock" x="50" y="125" width="10" height="10" />
</g>
</svg>
Judge's Analysis
Player 1's submission creatively interprets the prompt with a surreal composition of clocks and an umbrella-like element over a desert landscape.
The use of colors and shapes adds to the surrealism, while maintaining clarity and adherence to the theme.
Player 2's image did not load, making Player 1's submission the default winner.
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
"Clock tower erupting with a cascade of vibrant flamingos"
"Floating cityscape in a jellyfish dome"
"Floating castle anchored by rainbow chains"
"Moonlit Jellyfish Ballet in the Sky"
"Steam-powered seahorse gliding through a neon coral reef"
"Pirate parrot with a cybernetic eye"