Creative Challenge
"A clock made of melting ice, showing time dripping away"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="iceGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#a3f7ff"/>
<stop offset="100%" stop-color="#51c4d3"/>
</radialGradient>
<radialGradient id="meltGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#80d0ff"/>
<stop offset="100%" stop-color="#004e89"/>
</radialGradient>
<linearGradient id="dripGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#a3f7ff"/>
<stop offset="100%" stop-color="#51c4d3"/>
</linearGradient>
<pattern id="crackPattern" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
<path d="M0 0 L4 4 M4 0 L0 4" stroke="#ffffff" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Clock Base (melting ice clock) -->
<g id="clock" transform="translate(150,150)">
<!-- Main clock circle -->
<circle cx="0" cy="0" r="60" fill="url(#iceGradient)" stroke="#fff" stroke-width="2"/>
<!-- Clock face details -->
<circle cx="0" cy="0" r="58" fill="none" stroke="url(#crackPattern)" stroke-width="1.5"/>
<!-- Clock numbers markers -->
<g id="markers">
<line x1="0" y1="-52" x2="0" y2="-58" stroke="#fff" stroke-width="2"/>
<line x1="40" y1="-40" x2="44" y2="-44" stroke="#fff" stroke-width="2" transform="rotate(45)"/>
<line x1="52" y1="0" x2="58" y2="0" stroke="#fff" stroke-width="2"/>
<line x1="40" y1="40" x2="44" y2="44" stroke="#fff" stroke-width="2" transform="rotate(135)"/>
<line x1="0" y1="52" x2="0" y2="58" stroke="#fff" stroke-width="2"/>
<line x1="-40" y1="40" x2="-44" y2="44" stroke="#fff" stroke-width="2" transform="rotate(-135)"/>
<line x1="-52" y1="0" x2="-58" y2="0" stroke="#fff" stroke-width="2"/>
<line x1="-40" y1="-40" x2="-44" y2="-44" stroke="#fff" stroke-width="2" transform="rotate(-45)"/>
</g>
<!-- Clock hands (dripping) -->
<g id="hands">
<!-- Hour hand -->
<path d="M0 0 L0 -30 Q-2 -32 0 -34 Q2 -32 0 -30 Z" fill="#fff"/>
<!-- Minute hand -->
<path d="M0 0 L20 -20 Q18 -22 20 -24 Q22 -22 20 -20 Z" fill="#fff"/>
</g>
</g>
<!-- Melting drips -->
<g id="drips">
<!-- Top drip -->
<path d="M130,90 C128,60 132,40 140,50 C148,60 146,80 145,100 C144,120 142,140 140,150 C138,160 135,165 133,170 C131,175 128,180 125,183 C120,188 115,190 110,190 C105,190 100,188 95,183 C90,178 87,170 85,160 C83,145 82,130 83,115 C84,100 86,80 90,70 C94,60 100,55 105,55 C110,55 115,60 120,70 C125,80 127,90 130,90 Z" fill="url(#dripGradient)" opacity="0.85"/>
<!-- Right drip -->
<path d="M200,140 C220,138 240,142 235,150 C230,158 225,170 220,180 C215,190 210,200 205,205 C200,210 195,212 190,212 C185,212 180,210 175,205 C170,200 165,190 160,180 C155,170 150,158 145,150 C140,142 160,140 200,140 Z" fill="url(#dripGradient)" opacity="0.85"/>
<!-- Left drip -->
<path d="M70,140 C50,138 30,142 35,150 C40,158 45,170 50,180 C55,190 60,200 65,205 C70,210 75,212 80,212 C85,212 90,210 95,205 C100,200 105,190 110,180 C115,170 120,158 125,150 C130,142 110,140 70,140 Z" fill="url(#dripGradient)" opacity="0.85"/>
<!-- Bottom drip -->
<path d="M130,210 C128,240 132,260 140,250 C148,240 146,220 145,200 C144,180 142,160 140,150 C138,140 135,135 133,130 C131,125 128,120 125,117 C120,112 115,110 110,110 C105,110 100,112 95,117 C90,122 87,130 85,140 C83,155 82,170 83,185 C84,200 86,220 90,230 C94,240 100,245 105,245 C110,245 115,240 120,230 C125,220 127,210 130,210 Z" fill="url(#dripGradient)" opacity="0.85"/>
</g>
<!-- Background subtle gradient -->
<rect x="0" y="0" width="300" height="300" fill="url(#meltGradient)" opacity="0.3"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="ice" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#C7F464" stop-opacity="0.8"/>
<stop offset="0.5" stop-color="#87CEEB" stop-opacity="0.6"/>
<stop offset="1" stop-color="#45A0E6" stop-opacity="0.4"/>
</linearGradient>
<radialGradient id="clock-face" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0" stop-color="#FFFFFF" stop-opacity="0.8"/>
<stop offset="0.5" stop-color="#CCCCCC" stop-opacity="0.6"/>
<stop offset="1" stop-color="#999999" stop-opacity="0.4"/>
</radialGradient>
<pattern id="drip-pattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#45A0E6" rx="1"/>
</pattern>
</defs>
<rect x="10" y="10" width="280" height="280" rx="10" fill="url(#ice)" />
<circle cx="150" cy="150" r="120" fill="url(#clock-face)" />
<circle cx="150" cy="150" r="110" fill="none" stroke="#CCCCCC" stroke-width="10" />
<circle cx="150" cy="150" r="100" fill="none" stroke="#999999" stroke-width="5" />
<g transform="rotate(-45 150 150)">
<rect x="130" y="130" width="20" height="40" fill="#45A0E6" rx="2" transform="skewX(20)"/>
<rect x="130" y="170" width="20" height="40" fill="#45A0E6" rx="2" transform="skewX(20)"/>
</g>
<g transform="rotate(45 150 150)">
<rect x="130" y="130" width="20" height="40" fill="#45A0E6" rx="2" transform="skewX(-20)"/>
<rect x="130" y="170" width="20" height="40" fill="#45A0E6" rx="2" transform="skewX(-20)"/>
</g>
<g transform="translate(150 150)">
<circle cx="0" cy="-50" r="5" fill="#45A0E6" />
<circle cx="0" cy="-40" r="5" fill="#45A0E6" />
<circle cx="0" cy="-30" r="5" fill="#45A0E6" />
<circle cx="0" cy="-20" r="5" fill="#45A0E6" />
<circle cx="0" cy="-10" r="5" fill="#45A0E6" />
</g>
<rect x="120" y="220" width="60" height="20" fill="url(#drip-pattern)" rx="2" transform="skewX(10)"/>
<rect x="120" y="240" width="60" height="20" fill="url(#drip-pattern)" rx="2" transform="skewX(10)"/>
<rect x="120" y="260" width="60" height="20" fill="url(#drip-pattern)" rx="2" transform="skewX(10)"/>
</svg>
Judge's Analysis
Player 2's image more effectively conveys the concept of a clock made of melting ice, with clear visual elements indicating time and melting.
The clock face and dripping effect are well-integrated, enhancing both creativity and adherence to the prompt.
Player 1's image, while abstract and visually appealing, lacks clear representation of a clock or the melting aspect, making it less aligned with the theme.
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
"Floating island with a giant clock face and a tree growing through it"
"Outer-space tea party on a giant lily pad with astronaut frogs"
"Surreal clock tower melting under a rainbow sky, Pointillism style"
"Surreal cat planet, star-shaped clouds, floating fish islands"
"A clock-faced cat juggling planets in zero gravity"