Creative Challenge
"A clock with melting time, nestled in a desert of swirling sand patterns"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#edc9a9;stop-opacity:1" />
<stop offset="100%" style="stop-color:#d8b781;stop-opacity:1" />
</linearGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f7e1b8;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f3d84d;stop-opacity:1" />
</linearGradient>
<filter id="distort" x="-20%" y="-20%" width="140%" height="140%">
<feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="turbulence"/>
<feDisplacementMap in="SourceGraphic" in2="turbulence" scale="10" />
</filter>
</defs>
<rect width="100%" height="100%" fill="#c2a16d"/>
<g transform="translate(150,150)">
<ellipse cx="0" cy="0" rx="75" ry="90" fill="url(#clockGradient)" filter="url(#distort)"/>
<path d="M-40,-90 Q-80,-70 -60,-50 Q-20,-30 -5,-40 Q10,-50 15,-70 Q5,-80 -10,-80 Q-30,-75 -40,-90 Z" fill="#f2d42c"/>
<circle r="10" fill="#6b2b00"/>
<line x1="0" y1="0" x2="0" y2="-40" stroke="#6b2b00" stroke-width="4" stroke-linecap="round" />
<line x1="0" y1="0" x2="20" y2="-20" stroke="#6b2b00" stroke-width="2" stroke-linecap="round"/>
<text x="-20" y="10" font-family="Verdana" font-size="12" fill="#6b2b00">12</text>
<text x="15" y="30" font-family="Verdana" font-size="12" fill="#6b2b00">3</text>
<text x="-30" y="30" font-family="Verdana" font-size="12" fill="#6b2b00">9</text>
<text x="0" y="-50" font-family="Verdana" font-size="12" fill="#6b2b00">6</text>
</g>
<g fill="url(#sandGradient)">
<path d="M10,250 Q75,220 150,250 Q225,280 290,250 L300,300 L0,300 Z" />
<path d="M0,240 Q40,210 75,230 Q125,250 200,230 Q270,210 300,240 L300,300 L0,300 Z" />
<path d="M0,230 Q30,200 70,210 Q150,220 225,210 Q280,200 300,230 L300,300 L0,300 Z" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Background -->
<rect x="0" y="0" width="300" height="300" fill="#F5DEB3" />
<g transform="translate(150, 150)">
<!-- Swirling Sand Pattern -->
<g transform="rotate(45)">
<rect x="-150" y="-150" width="300" height="300" fill="url(#sand-gradient)" />
<path d="M-150 -150 L150 150" stroke="#F2C464" stroke-width="2" />
<path d="M-100 -100 L100 100" stroke="#F2C464" stroke-width="2" />
<path d="M-50 -50 L50 50" stroke="#F2C464" stroke-width="2" />
</g>
<!-- Melting Time -->
<g transform="translate(0, 50)">
<path d="M-50 0 Q 0 50 50 0" fill="#39B4BF" />
<path d="M-40 0 Q 0 40 40 0" fill="#3E92CC" />
<path d="M-30 0 Q 0 30 30 0" fill="#4499D8" />
</g>
<!-- Clock -->
<circle cx="0" cy="0" r="50" fill="#3E92CC" />
<path d="M-35 0 L35 0" stroke="#F2C464" stroke-width="4" />
<path d="M0 -35 L0 35" stroke="#F2C464" stroke-width="4" />
<circle cx="0" cy="0" r="10" fill="#39B4BF" />
<!-- Clock Hands -->
<path d="M0 0 L-20 20" stroke="#F2C464" stroke-width="2" />
<path d="M0 0 L20 -20" stroke="#F2C464" stroke-width="2" />
</g>
<!-- Gradient Definitions -->
<defs>
<linearGradient id="sand-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#F5DEB3" />
<stop offset="100%" stop-color="#F2C464" />
</linearGradient>
</defs>
</svg>
Judge's Analysis
Player 1's submission more closely adheres to the prompt with a clock that visually appears to be melting, set against a desert-like background.
The use of warm colors and sand patterns creates a cohesive visual that aligns well with the theme.
Player 2's image, while visually appealing, lacks the melting and desert elements specified in the prompt.
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
"Octopus DJing at an underwater rave, with starfish dancers"
"Skateboarding octopus, undersea rink, wearing sunglasses"
"A floating island with a twisted tree and a single hanging lantern"
"A clock melting in a desert under a double rainbow"
"Treasure map showing an alien planet with psychedelic flora"
"Rainbow-colored octopus juggling teacups in a starry sea"