Creative Challenge
"A clock melting over an iceberg"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="icebergGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#a8e6cf" />
<stop offset="100%" stop-color="#dcedc1" />
</linearGradient>
<linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff8b94" />
<stop offset="100%" stop-color="#ffaaa5" />
</linearGradient>
<pattern id="iceTexture" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M 0 0 L 20 20 M 0 20 L 20 0" stroke="#b0e0e6" stroke-width="2" />
</pattern>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" />
<feOffset dx="2" dy="2" result="offsetblur" />
<feMerge>
<feMergeNode in="offsetblur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="#f4f4f4" />
<g transform="translate(50, 150)">
<path d="M 0 0 L 100 0 L 150 100 L 50 100 Z" fill="url(#icebergGradient)" filter="url(#shadow)" />
<path d="M 0 0 L 100 0 L 150 100 L 50 100 Z" fill="url(#iceTexture)" opacity="0.3" />
<path d="M 50 100 L 150 100 L 200 200 L 100 200 Z" fill="url(#icebergGradient)" filter="url(#shadow)" />
<path d="M 50 100 L 150 100 L 200 200 L 100 200 Z" fill="url(#iceTexture)" opacity="0.3" />
</g>
<g transform="translate(150, 100)">
<ellipse cx="0" cy="0" rx="50" ry="25" fill="url(#clockGradient)" filter="url(#shadow)" />
<line x1="-40" y1="0" x2="0" y2="-20" stroke="#ffffff" stroke-width="3" />
<line x1="0" y1="0" x2="0" y2="-15" stroke="#ffffff" stroke-width="3" />
<circle cx="0" cy="0" r="5" fill="#ffffff" />
<path d="M -50 -25 Q 0 -50 50 -25 T 50 25 Q 0 50 -50 25 Z" fill="url(#clockGradient)" opacity="0.8" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="icebergGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#a1c4f1;stop-opacity:1" />
<stop offset="100%" style="stop-color:#fbc2eb;stop-opacity:1" />
</linearGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff9966;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="#87CEFA" />
<path d="M100 230 Q120 210 140 230 T180 230 L160 270 L120 270 Z" fill="url(#icebergGradient)" />
<ellipse cx="150" cy="190" rx="25" ry="12" fill="#ffffff" opacity="0.8"/>
<circle cx="150" cy="150" r="55" fill="url(#clockGradient)" stroke="#4B4B4B" stroke-width="3" />
<circle cx="150" cy="150" r="55" fill="none" stroke="#4B4B4B" stroke-width="3" stroke-dasharray="5,5" />
<line x1="150" y1="150" x2="150" y2="110" stroke="#4B4B4B" stroke-width="4" />
<line x1="150" y1="150" x2="180" y2="150" stroke="#4B4B4B" stroke-width="4" transform="rotate(40,150,150)" />
<text x="135" y="150" fill="#5A5A5A" font-family="Arial" font-size="10" transform="rotate(-15,135,150)">12</text>
<text x="165" y="145" fill="#5A5A5A" font-family="Arial" font-size="10" transform="rotate(-15,165,145)">3</text>
<text x="135" y="155" fill="#5A5A5A" font-family="Arial" font-size="10" transform="rotate(-15,135,155)">6</text>
<text x="165" y="160" fill="#5A5A5A" font-family="Arial" font-size="10" transform="rotate(-15,165,160)">9</text>
<path d="M145 190 C160 220, 120 225, 135 260" fill="none" stroke="#4B4B4B" stroke-width="2" opacity="0.5"/>
<path d="M130 165 Q70 155 95 120 T130 85 Z" fill="#ffffff" opacity="0.6" />
</svg>
Judge's Analysis
Player 2's image captures the prompt more effectively by depicting a clock that appears to be melting, with a clearer representation of an iceberg.
The use of colors and shapes enhances the visual appeal and creativity, while maintaining adherence to the theme.
Player 1's image lacks clarity in conveying the concept of a melting clock and iceberg, making Player 2's submission the stronger choice 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
"A cat floating in space, wearing an astronaut helmet, chasing a glowing alien fish"
"Rainbow-colored iceberg floating in lemonade sea"
"Cat wearing a cape, flying over a cityscape at night, with stars and moon"
"A jellyfish skyscraper with city lights glowing through tentacles"
"Butterfly wings made of stained glass, catching sunlight through them"
"Rainbow-tentacled octopus juggling planets in an abstract geometric style"