Creative Challenge
"A clock with melting numbers and tree branches as hands"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Outer clock border -->
<circle cx="150" cy="150" r="140" fill="url(#outerGradient)" stroke="black" stroke-width="2" />
<!-- Gradient for the clock -->
<defs>
<radialGradient id="outerGradient">
<stop offset="0%" stop-color="#ededed" />
<stop offset="100%" stop-color="#c2c2c2" />
</radialGradient>
<linearGradient id="branchGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8B4513" />
<stop offset="100%" stop-color="#A0522D" />
</linearGradient>
</defs>
<!-- Numbers with melting effect -->
<text x="120" y="100" font-family="Arial" font-size="24" fill="#333" transform="rotate(-10, 120, 100)">
12
</text>
<path d="M90 110 Q80 130, 90 150 T110 170" fill="none" stroke="#333" stroke-width="2" />
<text x="190" y="160" font-family="Arial" font-size="24" fill="#333" transform="rotate(15, 190, 160)">
3
</text>
<path d="M180 170 Q170 195, 180 200 T190 230" fill="none" stroke="#333" stroke-width="2" />
<text x="140" y="210" font-family="Arial" font-size="24" fill="#333" transform="rotate(-5, 140, 210)">
6
</text>
<path d="M130 220 Q120 250, 140 255 T160 265" fill="none" stroke="#333" stroke-width="2" />
<text x="60" y="160" font-family="Arial" font-size="24" fill="#333" transform="rotate(-10, 60, 160)">
9
</text>
<path d="M50 170 Q40 195, 60 200 T70 210" fill="none" stroke="#333" stroke-width="2" />
<!-- Tree branch hands -->
<path d="M150 150 Q140 130, 120 120" stroke="url(#branchGradient)" stroke-width="8" stroke-linecap="round" />
<path d="M150 150 Q170 170, 190 190" stroke="url(#branchGradient)" stroke-width="6" stroke-linecap="round" />
<!-- Leaves on branches -->
<circle cx="120" cy="120" r="6" fill="green" />
<circle cx="190" cy="190" r="6" fill="green" />
<!-- Clock center -->
<circle cx="150" cy="150" r="8" fill="#444" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="clockGradient">
<stop offset="0%" stop-color="#1a1a1a"/>
<stop offset="100%" stop-color="#2d4466"/>
</radialGradient>
<pattern id="noise" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#0f0f0f"/>
<rect x="1" y="1" width="8" height="8" fill="#1a1a1a"/>
</pattern>
</defs>
<g transform="translate(150,150)">
<!-- Clock face -->
<circle r="100" fill="url(#clockGradient)" stroke="#333" stroke-width="2"/>
<!-- Melting numbers -->
<g transform="rotate(0 0 0)">
<path d="M-95,0 Q-85,0 -75,10" fill="#ff6b6b" transform="rotate(0)"/>
<path d="M-90,0 Q-80,0 -70,15" fill="#ffd93d" transform="rotate(60)"/>
<path d="M-85,0 Q-75,0 -65,20" fill="#6c5ce7" transform="rotate(120)"/>
<path d="M-80,0 Q-70,0 -60,25" fill="#2ecc71" transform="rotate(180)"/>
<path d="M-75,0 Q-65,0 -55,30" fill="#e74c3c" transform="rotate(240)"/>
<path d="M-70,0 Q-60,0 -50,35" fill="#9b59b6" transform="rotate(300)"/>
</g>
<!-- Tree branch hands -->
<path d="M0,0 Q30,60 60,60" stroke="#7f6045" stroke-width="4" fill="none"/>
<path d="M0,0 Q25,-45 50,-45" stroke="#7f6045" stroke-width="3" fill="none"/>
<path d="M0,0 Q15,30 30,30" stroke="#7f6045" stroke-width="2" fill="none"/>
<!-- Decorative elements -->
<circle cx="-30" cy="-30" r="10" fill="#2ecc71"/>
<circle cx="30" cy="-30" r="10" fill="#2ecc71"/>
<circle cx="0" cy="30" r="10" fill="#2ecc71"/>
<!-- Background texture -->
<rect x="-100" y="-100" width="200" height="200" fill="url(#noise)"/>
</g>
</svg>
Judge's Analysis
Player 1's image effectively combines the melting numbers with the concept of tree branches as clock hands, clearly adhering to the prompt.
The creative execution of the melting effect and the use of color enhances visual appeal.
In contrast, Player 2's image lacks clarity and does not visually represent the given concept as effectively.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"