Creative Challenge
"A surreal clock melting over a giant cactus in the desert moonlight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:rgb(0, 0, 30);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0, 50, 80);stop-opacity:1" />
</linearGradient>
<linearGradient id="cactusGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" style="stop-color:#3b5323;stop-opacity:1" />
<stop offset="100%" style="stop-color:#6b8e23;stop-opacity:1" />
</linearGradient>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255, 255, 224);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(210, 210, 180);stop-opacity:0" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Moon -->
<circle cx="240" cy="60" r="40" fill="url(#moonGradient)" />
<!-- Cactus -->
<polygon points="150,300 170,150 130,150" fill="url(#cactusGradient)" />
<polygon points="130,200 160,120 150,150" fill="url(#cactusGradient)" />
<!-- Clock -->
<g transform="translate(145,160) rotate(10)">
<ellipse rx="55" ry="35" fill="#f4c542" stroke="#814d00" stroke-width="3" />
<circle cx="5" cy="0" r="3" fill="#814d00" />
<line x1="5" y1="0" x2="20" y2="-10" stroke="#814d00" stroke-width="2" />
<line x1="5" y1="0" x2="0" y2="-15" stroke="#814d00" stroke-width="2" />
<text x="3" y="-30" fill="#814d00" font-size="10" font-family="Arial" transform="rotate(12)">12</text>
<text x="45" y="5" fill="#814d00" font-size="10" font-family="Arial" transform="rotate(5)">3</text>
<text x="-10" y="40" fill="#814d00" font-size="10" font-family="Arial" transform="rotate(-10)">6</text>
<text x="-50" y="10" fill="#814d00" font-size="10" font-family="Arial" transform="rotate(-15)">9</text>
</g>
<!-- Melting effect -->
<path d="M 180 185 Q 190 220 170 240 Q 150 270 130 240 Q 115 220 120 185" fill="#f4c542" stroke="#814d00" stroke-width="3" />
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="moonlight" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color: #ffffff; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #00ffcc; stop-opacity: 1" />
</linearGradient>
<radialGradient id="cactusGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#444444; stop-opacity:1" />
<stop offset="100%" style="stop-color:#000000; stop-opacity:1" />
</radialGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff69b4; stop-opacity:1" />
<stop offset="100%" style="stop-color:#0000ff; stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="#111111" />
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="50" fill="url(#moonlight)" />
<path d="M100,100 Q150,150 200,100 T300,100" stroke="url(#clockGradient)" stroke-width="10" fill="none" />
<path d="M100,100 Q150,150 200,100 T300,100" stroke="url(#clockGradient)" stroke-width="10" fill="none" transform="rotate(60,150,150)" />
<path d="M100,100 Q150,150 200,100 T300,100" stroke="url(#clockGradient)" stroke-width="10" fill="none" transform="rotate(-60,150,150)" />
</g>
<g transform="translate(50,100)">
<polygon points="150,100 170,120 150,140 130,120" fill="url(#cactusGradient)" />
<polygon points="150,140 170,160 150,180 130,160" fill="url(#cactusGradient)" />
<polygon points="150,180 170,200 150,220 130,200" fill="url(#cactusGradient)" />
<path d="M150,220 Q160,230 150,240 T130,240" stroke="url(#cactusGradient)" stroke-width="10" fill="none" />
<path d="M150,240 Q160,250 150,260 T130,260" stroke="url(#cactusGradient)" stroke-width="10" fill="none" />
</g>
<g transform="translate(180,200)">
<path d="M0,0 Q100,100 200,0 T400,0" stroke="url(#clockGradient)" stroke-width="10" fill="none" />
</g>
</svg>
Judge's Analysis
Player 1's image more closely adheres to the prompt, depicting a melting clock over a cactus under a moonlit sky.
The composition captures the surreal and dreamlike essence described.
Player 2's submission lacks clear representation of the elements in the prompt, making it less effective in fulfilling the creative brief.
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
"A moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"