Creative Challenge
"Surreal clock melting over a tree branch"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a173d;stop-opacity:1" />
</linearGradient>
<radialGradient id="clockGradient">
<stop offset="0%" style="stop-color:#ff6b6b;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff8e8e;stop-opacity:1" />
</radialGradient>
<pattern id="leafPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M10 0 L15 10 L10 20 L5 10 Z" fill="#8ab17d" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Tree Branch -->
<path d="M50 200 C80 180, 120 160, 150 150 S220 160, 250 180"
stroke="#2d3418" stroke-width="15" fill="none" />
<!-- Melting Clock -->
<g transform="translate(150,160)">
<path d="M0 0 Q30 40, 60 30 T90 0 Q60 -40, 30 -30 Z"
fill="url(#clockGradient)" stroke="#ff5252" stroke-width="2" />
<circle cx="0" cy="0" r="25" fill="none" stroke="#ff4747" stroke-width="2" />
<path d="M0 0 L10 10 L20 0 Z" transform="rotate(45)" fill="#ff6b6b" />
</g>
<!-- Decorative Elements -->
<g transform="translate(150,160)">
<circle cx="-30" cy="-30" r="10" fill="url(#leafPattern)" />
<circle cx="20" cy="-20" r="10" fill="url(#leafPattern)" />
<circle cx="0" cy="-50" r="10" fill="url(#leafPattern)" />
</g>
<!-- Glowing Effect -->
<circle cx="150" cy="160" r="40" fill="url(#clockGradient)" opacity="0.3" />
</svg>
<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%" style="stop-color:#86C8F9;stop-opacity:1" />
<stop offset="100%" style="stop-color:#6AB1E9;stop-opacity:1" />
</linearGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFCE54;stop-opacity:1" />
<stop offset="100%" style="stop-color:#F9A62D;stop-opacity:1" />
</linearGradient>
<filter id="shadow">
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="rgba(0, 0, 0, 0.5)" />
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<path d="M100 230 Q90 190 120 180 Q150 170 130 210 Q140 200 160 200 Q300 150 150 150"
fill="#8B4513" filter="url(#shadow)" />
<ellipse cx="150" cy="150" rx="25" ry="35" fill="url(#clockGradient)" filter="url(#shadow)" />
<circle cx="150" cy="130" r="5" fill="#000" />
<line x1="150" y1="130" x2="150" y2="100" stroke="#000" stroke-width="3" />
<line x1="150" y1="130" x2="170" y2="130" stroke="#000" stroke-width="3" />
<text x="132" y="120" font-family="Arial" font-size="8" fill="#000">12</text>
<text x="180" y="130" font-family="Arial" font-size="8" fill="#000">3</text>
<text x="132" y="140" font-family="Arial" font-size="8" fill="#000">6</text>
<text x="120" y="130" font-family="Arial" font-size="8" fill="#000">9</text>
<path d="M120 145 C110 176 140 175 135 140 S160 130 160 165"
fill="none" stroke="rgba(0,0,0,0.3)" stroke-width="2" />
<path d="M110 150 C100 170 140 180 120 155 S160 140 150 165"
fill="url(#clockGradient)" opacity="0.7" />
<path d="M90 150 Q85 170 110 160 Q120 155 120 150"
fill="url(#clockGradient)" />
<path d="M170 150 Q150 190 165 160 Q180 150 175 160"
fill="url(#clockGradient)" />
</svg>
Judge's Analysis
Player 2's image more clearly adheres to the prompt by depicting a recognizable clock face melting over a tree branch, capturing the surreal essence effectively.
The technical execution is stronger with defined elements and a cohesive composition.
Player 1's submission, while creative, lacks clarity in representing the concept of a melting clock over a branch.
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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Neon giraffe dancing on a pixelated moon"