Creative Challenge
"Surreal clock made of clouds, raining numbers onto a dry desert landscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="sky" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#87CEEB" />
<stop offset="1" stop-color="#6495ED" />
</linearGradient>
<linearGradient id="cloud" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#FFFFFF" />
<stop offset="1" stop-color="#CCCCCC" />
</linearGradient>
<pattern id="numbers" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<text x="5" y="8" font-size="8" font-family="monospace" fill="#666">1 2 3 4 5 6 7 8 9 0</text>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#sky)" rx="20" />
<g transform="translate(150 100)">
<circle cx="0" cy="0" r="50" fill="url(#cloud)" />
<circle cx="0" cy="0" r="40" fill="url(#cloud)" />
<circle cx="0" cy="0" r="30" fill="url(#cloud)" />
<circle cx="0" cy="0" r="20" fill="url(#cloud)" />
<circle cx="0" cy="0" r="10" fill="url(#cloud)" />
<circle cx="0" cy="0" r="5" fill="#FFFFFF" />
<g transform="rotate(-90)">
<rect x="-20" y="-5" width="40" height="10" fill="#FFFFFF" rx="5" />
<rect x="-20" y="5" width="40" height="10" fill="#FFFFFF" rx="5" />
</g>
<g transform="rotate(90)">
<rect x="-20" y="-5" width="40" height="10" fill="#FFFFFF" rx="5" />
<rect x="-20" y="5" width="40" height="10" fill="#FFFFFF" rx="5" />
</g>
<circle cx="0" cy="0" r="60" fill="none" stroke="#FFFFFF" stroke-width="5" />
</g>
<rect x="50" y="200" width="200" height="50" fill="#F5F5DC" rx="10" />
<rect x="50" y="250" width="200" height="50" fill="#F5F5DC" rx="10" />
<g transform="translate(150 225)">
<rect x="-50" y="-20" width="100" height="20" fill="url(#numbers)" rx="5" />
<rect x="-50" y="0" width="100" height="20" fill="url(#numbers)" rx="5" />
<rect x="-50" y="20" width="100" height="20" fill="url(#numbers)" rx="5" />
<rect x="-50" y="40" width="100" height="20" fill="url(#numbers)" rx="5" />
<rect x="-50" y="60" width="100" height="20" fill="url(#numbers)" rx="5" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#b0e0e6;stop-opacity:0.8" />
</radialGradient>
<linearGradient id="desertGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f4a460;stop-opacity:1" />
<stop offset="100%" style="stop-color:#c2b280;stop-opacity:1" />
</linearGradient>
<filter id="shadow">
<feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="rgba(0,0,0,0.3)" />
</filter>
</defs>
<rect width="100%" height="100%" fill="#87ceeb" />
<ellipse cx="150" cy="220" rx="150" ry="50" fill="url(#desertGradient)" />
<g filter="url(#shadow)">
<path d="M120,100 Q80,60 120,20 Q160,0 180,20 Q220,60 180,100 Q160,120 120,100 Z"
fill="url(#cloudGradient)" />
<path d="M140,90 Q100,50 140,10 Q180,-10 200,10 Q240,50 200,90 Q180,110 140,90 Z"
fill="url(#cloudGradient)" />
<circle cx="150" cy="85" r="8" fill="#4682b4" />
<path d="M155,85 L155,60 Q158,60 160,62 Q162,64 162,67 L162,85 Z"
fill="#4682b4" />
</g>
<text x="135" y="45" font-size="12" fill="#4682b4" font-family="Verdana" text-anchor="middle">12</text>
<text x="195" y="95" font-size="12" fill="#4682b4" font-family="Verdana" text-anchor="middle">3</text>
<text x="135" y="135" font-size="12" fill="#4682b4" font-family="Verdana" text-anchor="middle">6</text>
<text x="75" y="95" font-size="12" fill="#4682b4" font-family="Verdana" text-anchor="middle">9</text>
<g fill="#8b0000" font-family="Arial" font-size="16">
<text x="140" y="120">7</text>
<text x="160" y="140">3</text>
<text x="130" y="160">1</text>
<text x="180" y="160">4</text>
<text x="145" y="200">2</text>
<text x="165" y="170">8</text>
</g>
<path d="M120,200 Q200,210 180,250" fill="none" stroke="#000" stroke-width="1" />
<text x="160" y="265" font-size="15" fill="#000" font-family="Courier New" text-anchor="middle" transform="rotate(-10 160,265)">Time is fleeting</text>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the surreal nature of a clock made of clouds with numbers raining onto a desert, as described in the prompt.
The use of a clock face embedded in a cloud, combined with numbers falling onto a barren landscape, demonstrates creativity and adherence to the theme.
The visual composition and message of 'Time is fleeting' enhance the conceptual depth and visual appeal of the piece.
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
"Penguin in a Spacesuit juggling planets"
"Starlit jellyfish conducting an underwater orchestra"
"Dinosaurs drinking tea at a whimsical garden party"
"Socks hanging on tree branches under a rainbow"
"A steam-powered penguin gliding through a rainbow sky"
"Floating island with giant teapot waterfall, stylized vector"