Creative Challenge
"Melting clock draped over a sleeping cat"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="catGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,200,150);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(150,100,50);stop-opacity:1" />
</linearGradient>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(200,200,200);stop-opacity:1" />
</radialGradient>
</defs>
<path d="
M 150 220
C 170 200, 200 210, 210 190
C 220 170, 190 160, 190 160
C 180 150, 150 160, 150 160
C 140 150, 110 160, 110 160
C 80 160, 90 180, 70 190
C 50 200, 80 230, 100 235
C 120 240, 140 240, 150 220
Z"
fill="url(#catGradient)" />
<ellipse cx="150" cy="165" rx="10" ry="6" fill="none" stroke="#000" stroke-width="2" />
<ellipse cx="245" cy="70" rx="60" ry="45" fill="url(#clockGradient)" />
<path d="
M 185 65
C 170 90, 190 120, 215 120
C 240 120, 290 120, 295 95
C 300 70, 260 40, 245 40
C 230 40, 200 40, 185 65
"
fill="url(#clockGradient)" stroke="#000" stroke-width="2" />
<circle cx="245" cy="70" r="2" fill="#000" />
<line x1="245" y1="70" x2="268" y2="50" stroke="#000" stroke-width="2" stroke-linecap="round"/>
<line x1="245" y1="70" x2="230" y2="95" stroke="#000" stroke-width="2" stroke-linecap="round"/>
<text x="280" y="80" font-family="Verdana" font-size="10" fill="#333">3</text>
<text x="242" y="25" font-family="Verdana" font-size="10" fill="#333">12</text>
<text x="202" y="72" font-family="Verdana" font-size="10" fill="#333">9</text>
<text x="245" y="123" font-family="Verdana" font-size="10" fill="#333">6</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with subtle gradient and texture -->
<rect width="300" height="300" fill="url(#sceneGrad)" />
<!-- Custom gradient for background -->
<defs>
<linearGradient id="sceneGrad" x1="0" y1="0" x2="300" y2="300">
<stop offset="0" stop-color="#1a4377" />
<stop offset="1" stop-color="#2196F3" />
</linearGradient>
<!-- Patterns and gradients for clock and cat -->
<linearGradient id="clockGrad" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" stop-color="#FFD700" />
<stop offset="1" stop-color="#FFA500" />
</linearGradient>
<linearGradient id="catFur" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" stop-color="#808080" />
<stop offset="1" stop-color="#404040" />
</linearGradient>
<!-- Melting effect filter -->
<filter id="meltEffect">
<feGaussianBlur stdDeviation="4" />
<feOffset dx="2" dy="2" />
</filter>
</defs>
<!-- Sleeping cat -->
<path d="M150,200 L120,220 Q130,225 140,225 L160,220 L150,200 Z" fill="url(#catFur)" />
<path d="M140,210 Q150,205 160,210" fill="#404040" />
<path d="M160,210 Q150,205 140,210" fill="#404040" />
<path d="M150,200 Q155,195 160,200" fill="#404040" />
<path d="M150,200 Q145,195 140,200" fill="#404040" />
<!-- Melting clock -->
<g transform="translate(100,150)">
<!-- Clock face -->
<path d="M0,0 Q50,-50 100,0 Q150,-50 200,0 Q250,50 200,100 Q150,150 100,100 Q50,150 0,100 Q-50,50 0,0"
fill="url(#clockGrad)" filter="url(#meltEffect)" />
<!-- Clock numbers and hands -->
<path d="M100,50 L120,70 L180,70 L200,50 L180,30 L120,30 Z" fill="#000" opacity="0.8" />
<path d="M100,100 Q150,100 160,90 L140,110 Z" fill="#000" opacity="0.8" />
<!-- Dripping clock parts -->
<path d="M200,100 Q220,120 200,140 L180,130 L160,140 Q140,120 140,100 Z" fill="url(#clockGrad)" opacity="0.8" />
<!-- Pendulum -->
<line x1="150" y1="120" x2="150" y2="160" stroke="#333" stroke-width="2" />
</g>
<!-- Stars in background -->
<g fill="#FFF" opacity="0.6">
<path d="M50,50 M60,60 M70,50 M60,40" />
<path d="M200,100 M210,110 M220,100 M210,90" />
<path d="M100,150 M110,160 M120,150 M110,140" />
</g>
<!-- Shadows -->
<ellipse cx="150" cy="170" rx="40" ry="20" fill="#1a1a1a" opacity="0.3" />
<ellipse cx="100" cy="160" rx="30" ry="15" fill="#333" opacity="0.3" />
</svg>
Judge's Analysis
Player 1's submission clearly depicts a melting clock draped over a sleeping cat, adhering closely to the prompt.
The execution is clear with recognizable elements, despite its simplicity.
In contrast, Player 2's image lacks clarity and recognizable elements related to the prompt, making it less effective in conveying the intended idea.
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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"