Creative Challenge
"A melting clock in a desert with a tiny, curious cactus wearing sunglasses."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FDB813" />
<stop offset="100%" stop-color="#ED7825" />
</linearGradient>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#A85CF9" />
<stop offset="100%" stop-color="#5C258D" />
</radialGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<path d="M100 150 c 20 -50 70 -50 90 0 c 20 50 -20 90 -70 60 c -50 -30 -40 -70 10 -60 z" fill="url(#clockGradient)" filter="url(#meltFilter)" />
<filter id="meltFilter" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur" />
<feDisplacementMap in="blur" in2="blur" scale="15" xChannelSelector="R" yChannelSelector="G" />
</filter>
<path d="M130 190 l -10 -20 h 20 z" fill="#FFF" />
<path d="M170 170 l -10 -20 h 20 z" fill="#FFF" />
<g transform="translate(220,200)">
<ellipse cx="20" cy="30" rx="15" ry="20" fill="#228B22" />
<ellipse cx="15" cy="20" rx="5" ry="7" fill="#000" />
<ellipse cx="25" cy="20" rx="5" ry="7" fill="#000" />
<path d="M5 15 a 8 5 0 0 0 20 0" stroke="#000" stroke-width="2" fill="none" />
<rect x="5" y="5" width="30" height="5" rx="2.5" fill="#000" />
</g>
<ellipse cx="240" cy="220" rx="10" ry="15" fill="#90EE90" />
<ellipse cx="260" cy="220" rx="8" ry="12" fill="#90EE90" />
<path d="M50 250 l 200 0" stroke="#D2B48C" stroke-width="10" stroke-linecap="round" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FFAC33"/>
<stop offset="100%" stop-color="#FF6B6B"/>
</linearGradient>
<radialGradient id="sun" cx="50%" cy="50%" r="50%">
<stop offset="70%" stop-color="#FFEA00" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#FFAC33" stop-opacity="0"/>
</radialGradient>
<linearGradient id="clock" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#CD803D"/>
<stop offset="100%" stop-color="#8B4513"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<circle cx="250" cy="50" r="40" fill="url(#sun)"/>
<!-- Desert dunes -->
<path d="M0 220 Q150 180 300 220 L300 300 0 300" fill="#E1B382" />
<path d="M0 240 Q150 200 300 240 L300 300 0 300" fill="#C99E6A" opacity="0.8"/>
<!-- Melting clock -->
<g transform="translate(150 160)">
<path d="M-50 0 Q-30 -40 0 -50 Q30 -60 50 -40 Q40 20 30 50 Q0 80 -30 50 Q-40 20 -50 0"
fill="url(#clock)" stroke="#5A3921" stroke-width="2"/>
<path d="M-15 -25 L15 -25 M0 -30 L0 10" stroke="#FFF" stroke-width="3" stroke-linecap="round"/>
<circle cx="0" cy="-25" r="3" fill="#FFF"/>
<path d="M-40 20 Q-20 40 0 45 Q20 50 40 30" fill="none" stroke="#5A3921" stroke-width="1.5"/>
</g>
<!-- Cactus with sunglasses -->
<g transform="translate(200 220) scale(0.6)">
<path d="M0 -40 Q20 -30 0 -20 Q-20 -10 0 0 L10 40 Q0 50 -10 40 L0 0" fill="#7BAF4E"/>
<circle cx="-15" cy="-25" r="8" fill="#1A1A1A"/>
<circle cx="15" cy="-25" r="8" fill="#1A1A1A"/>
<path d="M-15 -25 L15 -25 M-23 -25 Q-15 -20 -15 -15 M15 -25 Q15 -20 23 -15"
stroke="#4A90E2" stroke-width="3" fill="none"/>
<circle cx="0" cy="45" r="4" fill="#FF4081"/>
</g>
<!-- Sand texture -->
<filter id="sand">
<feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3"/>
<feColorMatrix values="0 0 0 0 0.8 0 0 0 0 0.7 0 0 0 0 0.5 0 0 0 1 0"/>
</filter>
<rect width="300" height="80" y="220" fill="#E1B382" filter="url(#sand)" opacity="0.3"/>
</svg>
Judge's Analysis
Player 2's submission incorporates a more detailed and creative interpretation of the prompt, with a clear depiction of a melting clock and a tiny cactus wearing sunglasses in a desert setting.
The background, sun, and overall composition enhance the visual appeal and fulfill the prompt better.
Player 1's entry is abstract and lacks clear adherence to the prompt, making it less effective overall.
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
"An octopus playing a grand piano underwater."
"Two giraffes in space suits playing chess on the moon."
"A giraffe wearing a neon superhero cape, leaping over a crescent moon"
"A giraffe wearing a top hat, riding a unicycle on a tightrope"