Creative Challenge
"A surreal clock with melting numbers, dripping into a desert landscape"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Desert landscape -->
<rect x="0" y="150" width="300" height="150" fill="#f7f4dc" rx="10" />
<path d="M 0 200 C 100 220 200 220 300 200" fill="#ffd700" stroke="#ffd700" stroke-width="2" />
<path d="M 0 250 C 100 270 200 270 300 250" fill="#ffd700" stroke="#ffd700" stroke-width="2" />
<rect x="0" y="280" width="300" height="20" fill="#786c3b" rx="10" />
<!-- Melting numbers -->
<g transform="rotate(45 150 150)">
<text x="120" y="120" font-size="40" font-family="Arial" fill="#3498db">3</text>
<path d="M 140 140 L 120 160" stroke="#3498db" stroke-width="5" />
<path d="M 140 140 L 160 120" stroke="#3498db" stroke-width="5" />
</g>
<g transform="rotate(30 200 100)">
<text x="180" y="80" font-size="40" font-family="Arial" fill="#f1c40f">6</text>
<path d="M 200 100 L 180 120" stroke="#f1c40f" stroke-width="5" />
<path d="M 200 100 L 220 80" stroke="#f1c40f" stroke-width="5" />
</g>
<g transform="rotate(60 100 200)">
<text x="80" y="180" font-size="40" font-family="Arial" fill="#e74c3c">9</text>
<path d="M 100 200 L 80 220" stroke="#e74c3c" stroke-width="5" />
<path d="M 100 200 L 120 180" stroke="#e74c3c" stroke-width="5" />
</g>
<!-- Clock face -->
<circle cx="150" cy="150" r="50" fill="#ecf0f1" stroke="#bdc3c7" stroke-width="5" />
<path d="M 150 100 L 150 200" stroke="#bdc3c7" stroke-width="3" />
<path d="M 100 150 L 200 150" stroke="#bdc3c7" stroke-width="3" />
<!-- Dripping effect -->
<g>
<path d="M 120 120 L 120 150" stroke="#3498db" stroke-width="3" />
<path d="M 120 150 L 120 180" stroke="#3498db" stroke-width="2" />
<path d="M 120 180 L 120 210" stroke="#3498db" stroke-width="1" />
</g>
<g>
<path d="M 180 80 L 180 110" stroke="#f1c40f" stroke-width="3" />
<path d="M 180 110 L 180 140" stroke="#f1c40f" stroke-width="2" />
<path d="M 180 140 L 180 170" stroke="#f1c40f" stroke-width="1" />
</g>
<g>
<path d="M 80 180 L 80 210" stroke="#e74c3c" stroke-width="3" />
<path d="M 80 210 L 80 240" stroke="#e74c3c" stroke-width="2" />
<path d="M 80 240 L 80 270" stroke="#e74c3c" stroke-width="1" />
</g>
<!-- Gradients and shadows -->
<defs>
<linearGradient id="desertGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffd700" />
<stop offset="100%" stop-color="#f7f4dc" />
</linearGradient>
<linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ecf0f1" />
<stop offset="100%" stop-color="#bdc3c7" />
</linearGradient>
</defs>
<rect x="0" y="150" width="300" height="150" fill="url(#desertGradient)" rx="10" />
<circle cx="150" cy="150" r="50" fill="url(#clockGradient)" stroke="#bdc3c7" stroke-width="5" />
</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="1">
<stop offset="0%" stop-color="#FFD27F"/>
<stop offset="100%" stop-color="#FFAA5C"/>
</linearGradient>
<linearGradient id="duneGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#D2B48C"/>
<stop offset="100%" stop-color="#A0522D"/>
</linearGradient>
<linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FF8C00"/>
</linearGradient>
<linearGradient id="dripGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FF8C00"/>
<stop offset="100%" stop-color="#8B4513"/>
</linearGradient>
<filter id="blur" x="0" y="0" width="200%" height="200%">
<feGaussianBlur stdDeviation="2" />
</filter>
<style>
.clock-body { fill: url(#clockGradient); stroke: #8B4513; stroke-width: 2; }
.number { font-family: 'Times New Roman', serif; font-weight: bold; fill: white; }
.drip { fill: url(#dripGradient); }
</style>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Sun -->
<circle cx="250" cy="50" r="30" fill="#FFD700" filter="url(#blur)" />
<!-- Desert Dunes -->
<path d="M0,250 C75,200 225,300 300,250 L300,300 L0,300 Z" fill="url(#duneGradient)" />
<!-- Clock -->
<g transform="translate(150,150)">
<ellipse cx="0" cy="0" rx="80" ry="50" class="clock-body" />
<!-- Hour Marks -->
<g>
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(0)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(30)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(60)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(90)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(120)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(150)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(180)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(210)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(240)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(270)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(300)" />
<line x1="0" y1="-40" x2="0" y2="-45" stroke="#8B4513" stroke-width="2" transform="rotate(330)" />
</g>
<!-- Numbers -->
<g class="numbers">
<text x="0" y="-25" text-anchor="middle" class="number" font-size="12">12</text>
<text x="20" y="-10" text-anchor="middle" class="number" font-size="12">1</text>
<text x="28,5" y="10" text-anchor="middle" class="number" font-size="12">2</text>
<text x="20" y="25" text-anchor="middle" class="number" font-size="12">3</text>
<text x="0" y="30" text-anchor="middle" class="number" font-size="12">6</text>
<text x="-20" y="25" text-anchor="middle" class="number" font-size="12">9</text>
<text x="-28,5" y="10" text-anchor="middle" class="number" font-size="12">10</text>
<text x="-20" y="-10" text-anchor="middle" class="number" font-size="12">11</text>
<!-- Melting Effect -->
<path d="M0,-25 Q5,-20 10,-22 Q15,-24 20,-20 Q25,-16 30,-18" fill="none" stroke="white" stroke-width="2" filter="url(#blur)" />
<path d="M20,-20 Q25,-15 30,-10 Q35,-5 40,-12 Q45,-19 50,-14" fill="none" stroke="white" stroke-width="2" filter="url(#blur)" />
</g>
<!-- Drips -->
<path d="M40,-10 C42,0 38,10 40,20" class="drip" stroke="none" />
<path d="M-40,-10 C-42,0 -38,10 -40,20" class="drip" stroke="none" />
<path d="M25,25 C27,35 23,45 25,55" class="drip" stroke="none" />
<path d="M-25,25 C-27,35 -23,45 -25,55" class="drip" stroke="none" />
</g>
</svg>
Judge's Analysis
Player 2's submission captures the surreal theme more effectively with a melting clock face and a desert backdrop, aligning well with the prompt.
The use of gradient colors enhances the visual appeal and conveys a dreamlike quality.
In contrast, Player 1's design lacks the melting effect and doesn't clearly depict the desert landscape, making it less aligned with the prompt's requirements.
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
"Floating umbrella carrying a fish over a cityscape"
"Floating islands with dancing flamingos in the sky"
"An octopus wearing a top hat, juggling planets while riding a bicycle"
"A spaceship stuck in a giant jelly donut floating in space"
"Glowing jellyfish orbiting a tiny planet in a starry galaxy"
"Chameleon wearing sunglasses, sunbathing on a bright striped beach towel"