Creative Challenge
"Surreal clock with melting numbers, branches growing as hands"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#f00" />
<stop offset="50%" stop-color="#ff0" />
<stop offset="100%" stop-color="#0f0" />
</linearGradient>
<radialGradient id="grad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#00f" />
<stop offset="100%" stop-color="#f0f" />
</radialGradient>
<filter id="dropshadow" height="130%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
<feOffset dx="2" dy="2" result="offsetblur"/>
<feComponentTransfer>
<feFuncA type="linear" slope="0.2"/>
</feComponentTransfer>
<feMerge>
<feMergeNode in="offsetblur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<circle cx="150" cy="150" r="100" fill="url(#grad2)" />
<g filter="url(#dropshadow)">
<path d="M150,150 L100,50 A 20 20 0 0 1 110 30 L 120 20 A 10 10 0 0 0 110 10 " stroke="brown" stroke-width="5" fill="none" transform="rotate(45, 150, 150)" id="minuteHand">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="90s" repeatCount="indefinite"/>
</path>
<path d="M150,150 L200,90 C 220 110, 250,70, 220, 50 L 230, 40 A 5 5 0 0 1 240, 30" stroke="#4a2e00" stroke-width="8" fill="none" id="hourHand">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="720s" repeatCount="indefinite"/>
</path>
</g>
<g font-family="cursive" font-size="20" text-anchor="middle" fill="url(#grad1)">
<text x="150" y="50" filter="url(#dropshadow)" transform="translate(0, 20) rotate(-10, 150, 50) scale(1.2, 0.8)" style="font-style: italic;">12</text>
<text x="250" y="150" filter="url(#dropshadow)" transform="translate(10, 0) rotate(-5, 250, 150) scale(0.9, 1)" style="font-style: italic;">3</text>
<text x="150" y="250" filter="url(#dropshadow)" transform="translate(0, -10) rotate(10, 150, 250)" >6</text>
<text x="50" y="150" filter="url(#dropshadow)" transform="translate(-20, 0) rotate(10, 50, 150) scale(0.7, 1.4)" style="font-style: italic;">9</text>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#1a1a1a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a1010;stop-opacity:1" />
</linearGradient>
<radialGradient id="grad2" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0%" style="stop-color:#silver;stop-opacity:1" />
<stop offset="70%" style="stop-color:#333;stop-opacity:1" />
</radialGradient>
<filter id="melt">
<feGaussianBlur stdDeviation="4" result="blur"/>
<feColorMatrix values="1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 0.5 0" result="glow"/>
<feComposite in="SourceGraphic" in2="glow" operator="arithmetic" k1="1" k2="0.5" k3="0.5" k4="0.5"/>
</filter>
</defs>
<rect width="300" height="300" fill="url(#grad1)"/>
<!-- Clock body -->
<circle cx="150" cy="150" r="120" fill="url(#grad2)" filter="blur(2)"/>
<!-- Melting numbers -->
<g transform="rotate(-90 150 150)">
<path d="M150,0 A120,120 0 0,1 240,120" fill="none" stroke="none">
<path d="M150,0 L165,5 L180,0 L170,-5 L150,0" transform="rotate(30 150 0)" fill="url(#grad2)" filter="url(#melt)"/>
<path d="M150,0 L165,5 L180,0 L170,-5 L150,0" transform="rotate(60 150 0)" fill="url(#grad2)" filter="url(#melt)"/>
<path d="M150,0 L165,5 L180,0 L170,-5 L150,0" transform="rotate(90 150 0)" fill="url(#grad2)" filter="url(#melt)"/>
<path d="M150,0 L165,5 L180,0 L170,-5 L150,0" transform="rotate(120 150 0)" fill="url(#grad2)" filter="url(#melt)"/>
<path d="M150,0 L165,5 L180,0 L170,-5 L150,0" transform="rotate(150 150 0)" fill="url(#grad2)" filter="url(#melt)"/>
</path>
</g>
<!-- Branch hands -->
<path d="M150,150 L170,140 L180,150 L175,145 L150,150" fill="none" stroke="url(#grad2)" stroke-width="8" opacity="0.8"/>
<path d="M150,150 L160,160 L170,150 L165,155 L150,150" fill="none" stroke="url(#grad2)" stroke-width="4" opacity="0.8"/>
<path d="M150,150 L155,155 L160,150 L157,152 L150,150" fill="none" stroke="#fff" stroke-width="2" filter="blur(1)"/>
<!-- Additional details -->
<circle cx="150" cy="150" r="130" fill="none" stroke="#333" stroke-width="2" opacity="0.3"/>
<circle cx="150" cy="150" r="10" fill="url(#grad2)" filter="blur(3)"/>
<!-- Glow effects -->
<circle cx="150" cy="150" r="130" fill="none" stroke="#4a1010" stroke-width="2" opacity="0.1" filter="blur(5)"/>
<circle cx="150" cy="150" r="100" fill="none" stroke="#1a1a1a" stroke-width="2" opacity="0.2" filter="blur(10)"/>
</svg>
Judge's Analysis
Player 1's submission effectively captures the surreal theme with melting numbers and branch-like hands, adhering well to the prompt.
The vibrant color gradient adds to the visual appeal and creativity.
In contrast, Player 2's submission lacks visible features and does not meet the prompt's requirements, making it less effective in terms of creativity and adherence.
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
"Rainbow-colored octopus painting the ocean with its tentacles"
"Wombats in top hats playing miniature violins under a glowing full moon"
"A cyberpunk octopus playing a violin"
"Alien ballerina gliding on a rainbow ringed Saturn"
"Octopus in a tuxedo juggling teacups over a coral ballet stage"
"Chameleon juggling colorful planets in space"