Creative Challenge
"Clock tower melting under a surreal cosmic sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunsetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF4500;stop-opacity:1" />
<stop offset="50%" style="stop-color:#FF8C00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
</linearGradient>
<linearGradient id="clockFaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#d0d0d0;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sunsetGradient)" />
<circle cx="150" cy="150" r="120" fill="url(#clockFaceGradient)" />
<rect x="135" y="30" width="30" height="100" fill="#8B4513" />
<polygon points="120,30 180,30 180,0 120,0" fill="#d2691e" />
<circle cx="150" cy="150" r="100" stroke="#333" stroke-width="5" fill="none" />
<line x1="150" y1="150" x2="150" y2="90" stroke="#333" stroke-width="5" />
<line x1="150" y1="150" x2="195" y2="150" stroke="#333" stroke-width="5" />
<path d="M120,180 C100,200 110,250 150,230 C190,250 200,200 180,180 Z" fill="#FF6347" />
<path d="M130,150 C110,170 115,220 150,210 C185,220 190,170 170,150 Z" fill="#FF4500" opacity="0.7" />
<path d="M140,195 Q130,190 135,210 Q140,215 150,205 Q155,210 160,200 Q165,190 155,195 Q150,185 140,195 Z" fill="#6A5ACD" />
<g transform="translate(150,150) scale(0.8) translate(-150,-150)">
<circle cx="150" cy="150" r="90" stroke="#333" stroke-width="3" fill="none" />
<text x="150" y="150" font-family="Verdana" font-size="20" fill="black" text-anchor="middle" dominant-baseline="middle">12:00</text>
</g>
<defs>
<filter id="meltingEffect" x="0" y="0">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" />
<feDisplacementMap in="SourceGraphic" scale="10" xChannelSelector="R" yChannelSelector="G" />
</filter>
</defs>
<rect x="0" y="0" width="300" height="300" fill="none" filter="url(#meltingEffect)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunsetGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff9a9e" />
<stop offset="50%" stop-color="#fad0c4" />
<stop offset="100%" stop-color="#fad0c4" />
</linearGradient>
<linearGradient id="cosmicGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#a18cd1" />
<stop offset="100%" stop-color="#fbc2eb" />
</linearGradient>
<pattern id="starPattern" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white" />
</pattern>
<mask id="meltMask">
<rect x="0" y="0" width="300" height="300" fill="white" />
<path d="M150 100 Q180 130 180 160 Q150 190 120 160 Q90 130 90 100 Q120 70 150 100" fill="black"/>
</mask>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#sunsetGradient)" />
<circle cx="150" cy="150" r="120" fill="url(#cosmicGradient)" mask="url(#meltMask)" />
<rect x="145" y="80" width="10" height="120" fill="#3c1642" mask="url(#meltMask)" />
<rect x="140" y="60" width="20" height="40" fill="#3c1642" mask="url(#meltMask)" />
<circle cx="150" cy="70" r="8" fill="#3c1642" />
<circle cx="150" cy="70" r="6" stroke="white" stroke-width="1" fill="url(#sunsetGradient)" />
<line x1="150" y1="70" x2="155" y2="65" stroke="white" stroke-width="1" />
<line x1="150" y1="70" x2="150" y2="62" stroke="white" stroke-width="1" />
<rect x="20" y="200" width="260" height="80" fill="url(#starPattern)" opacity="0.2" />
<ellipse cx="150" cy="150" rx="140" ry="50" fill="none" stroke="white" stroke-width="0.5" opacity="0.3" />
<ellipse cx="150" cy="150" rx="120" ry="30" fill="none" stroke="white" stroke-width="0.5" opacity="0.3" transform="rotate(-30 150 150)" />
<ellipse cx="150" cy="150" rx="120" ry="30" fill="none" stroke="white" stroke-width="0.5" opacity="0.3" transform="rotate(30 150 150)" />
</svg>
Judge's Analysis
Player 2's submission captures the surreal cosmic sunset with a more cohesive color palette and abstract representation, enhancing the surreal theme.
The use of gradients and circular elements creates a cosmic ambiance, aligning well with the prompt.
Player 1's image, while interesting, lacks the same level of creativity and visual appeal, focusing more on a simplistic melting effect.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"