Creative Challenge
"Clock-faced tree with melting leaf numbers"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#87CEFA"/>
<stop offset="100%" stop-color="#f0e68c"/>
</linearGradient>
<radialGradient id="treeGradient" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0%" stop-color="#228B22"/>
<stop offset="100%" stop-color="#006400"/>
</radialGradient>
<linearGradient id="trunkGradient" x1="150" y1="300" x2="150" y2="180">
<stop offset="0%" stop-color="#8B4513"/>
<stop offset="100%" stop-color="#654321"/>
</linearGradient>
<filter id="melting">
<feGaussianBlur in="SourceGraphic" stdDeviation="1" />
<feOffset in="blur" dx="0" dy="2" result="offsetBlur"/>
<feMerge>
<feMergeNode in="offsetBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<style>
.leaf {
fill: url(#treeGradient);
filter: url(#melting);
}
.trunk {
fill: url(#trunkGradient);
}
.clock-face {
fill: none;
stroke: #fff;
stroke-width: 2;
}
.clock-hand {
stroke: #fff;
stroke-width: 2;
stroke-linecap: round;
}
.number {
fill: #fff;
font-family: Arial, sans-serif;
font-size: 12px;
text-anchor: middle;
filter: url(#melting);
}
</style>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Trunk -->
<rect x="140" y="180" width="20" height="120" class="trunk" />
<!-- Branches -->
<path d="M150 180 Q130 150 100 130" stroke="#654321" stroke-width="5" fill="none"/>
<path d="M150 180 Q170 150 200 130" stroke="#654321" stroke-width="5" fill="none"/>
<!-- Clock Face -->
<circle cx="150" cy="100" r="50" class="clock-face" />
<!-- Clock Numbers as Melting Leaves -->
<g>
<text x="150" y="70" class="number">12</text>
<text x="190" y="100" class="number">3</text>
<text x="150" y="130" class="number">6</text>
<text x="110" y="100" class="number">9</text>
</g>
<!-- Clock Hands -->
<line x1="150" y1="100" x2="150" y2="80" class="clock-hand"/>
<line x1="150" y1="100" x2="170" y2="100" class="clock-hand"/>
<!-- Tree Canopy -->
<ellipse cx="150" cy="100" rx="60" ry="40" fill="url(#treeGradient)" />
<!-- Additional Melting Leaves -->
<path d="M130 90 Q125 95 130 100 Q135 95 130 90" class="leaf" />
<path d="M170 90 Q165 95 170 100 Q175 95 170 90" class="leaf" />
<path d="M140 120 Q138 125 140 130 Q142 125 140 120" class="leaf" />
<path d="M160 120 Q158 125 160 130 Q162 125 160 120" class="leaf" />
<!-- Ground -->
<ellipse cx="150" cy="300" rx="300" ry="20" fill="#556B2F"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="meltGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ff6b6b;stop-opacity:1" />
<stop offset="70%" style="stop-color:#ffa7a7;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffe6e6;stop-opacity:0" />
</radialGradient>
<pattern id="leafPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="url(#meltGradient)" />
</pattern>
</defs>
<g transform="translate(150,150)">
<!-- Tree Trunk -->
<rect x="-10" y="-120" width="20" height="120" fill="#3d2b1f" />
<!-- Branches -->
<g transform="rotate(45)">
<line x1="0" y1="0" x2="80" y2="80" stroke="#654321" stroke-width="4" />
<g transform="translate(60,60)">
<circle r="15" fill="url(#meltGradient)" />
<text font-size="6" fill="#ffffff">
<textPath xlink:href="M0,0 15,0 15,15 0,15Z">
12 1 2 3 4 5 6 7 8 9 10 11
</textPath>
</text>
</g>
</g>
<g transform="rotate(-45)">
<line x1="0" y1="0" x2="80" y2="-80" stroke="#654321" stroke-width="4" />
<g transform="translate(60,-60)">
<circle r="15" fill="url(#meltGradient)" />
<text font-size="6" fill="#ffffff">
<textPath xlink:href="M0,0 15,0 15,15 0,15Z">
12 1 2 3 4 5 6 7 8 9 10 11
</textPath>
</text>
</g>
</g>
<!-- Clock Face Leaves -->
<g transform="rotate(30)">
<circle cx="40" cy="0" r="15" fill="url(#meltGradient)" />
<text x="40" y="0" font-size="6" fill="#ffffff" transform="rotate(-30 40 0)">
<textPath xlink:href="M0,0 30,0 30,30 0,30Z">
12 1 2 3 4 5 6 7 8 9 10 11
</textPath>
</text>
</g>
<g transform="rotate(-30)">
<circle cx="40" cy="0" r="15" fill="url(#meltGradient)" />
<text x="40" y="0" font-size="6" fill="#ffffff" transform="rotate(30 40 0)">
<textPath xlink:href="M0,0 30,0 30,30 0,30Z">
12 1 2 3 4 5 6 7 8 9 10 11
</textPath>
</text>
</g>
<!-- Melting Effect -->
<circle cx="0" cy="0" r="80" fill="none" stroke="url(#meltGradient)" stroke-width="4" stroke-linecap="round" />
</g>
</svg>
Judge's Analysis
Player 1's image features a tree with a clock face, which aligns more closely with the prompt.
Although it lacks the melting leaf numbers, it has a clear depiction of a tree and a clock.
Player 2's image did not load, so it cannot be evaluated.
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 forest with trees playing musical instruments"
"Fish wearing top hats juggling starfish in a coral circus"
"Clock with mismatched hands inside a floating teacup"
"Giraffe surfing on a giant wave under a starry night sky"
"Surreal: Melting clock shaped like a dripping candle on a desert horizon"
"A giraffe wearing a diving suit, surrounded by coral reefs and sea creatures"