Creative Challenge
"Melting clock tower sprouting flowers"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background sky -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- Sun -->
<circle cx="50" cy="50" r="40" fill="#FFD700" />
<circle cx="50" cy="50" r="30" fill="#FFEC8B" />
<!-- Melting clock tower -->
<rect x="120" y="50" width="60" height="150" fill="#A9A9A9" />
<path d="M105,50 L165,50 Q145,0 125,50" fill="#D3D3D3" />
<!-- Clock face -->
<circle cx="150" cy="115" r="25" fill="#FFFFFF" />
<circle cx="150" cy="115" r="22" fill="#D3D3D3" />
<!-- Clock hands -->
<line x1="150" y1="115" x2="150" y2="60" stroke="#000000" stroke-width="2" />
<line x1="150" y1="115" x2="120" y2="135" stroke="#000000" stroke-width="2" />
<!-- Flowers -->
<circle cx="150" cy="200" r="15" fill="#FF69B4" />
<circle cx="140" cy="180" r="12" fill="#FF69B4" />
<circle cx="160" cy="180" r="12" fill="#FF69B4" />
<circle cx="170" cy="200" r="15" fill="#FF69B4" />
<circle cx="140" cy="210" r="12" fill="#FF69B4" />
<circle cx="160" cy="210" r="12" fill="#FF69B4" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0.8" y2="1">
<stop offset="0%" stop-color="#2a044a"/>
<stop offset="100%" stop-color="#0b2e59"/>
</linearGradient>
<radialGradient id="meltMetal">
<stop offset="30%" stop-color="#d4af37"/>
<stop offset="100%" stop-color="#bf953f"/>
</radialGradient>
<filter id="softGlow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Melting Structure -->
<path d="M145 50v170c-15 40-60 55-90 30" fill="url(#meltMetal)" filter="url(#softGlow)" opacity="0.9"/>
<path d="M155 50v170c15 40 60 55 90 30" fill="url(#meltMetal)" filter="url(#softGlow)" opacity="0.9"/>
<!-- Clock Faces -->
<g transform="translate(150 100)">
<ellipse rx="25" ry="35" fill="#5c4033"/>
<path d="M-15 0a25 35 0 0 0 30 0" fill="none" stroke="#d4af37" stroke-width="3"/>
<g transform="rotate(30)">
<rect x="-2" y="-20" width="4" height="20" fill="#fff5ee"/>
<rect x="-1" y="-30" width="2" height="15" fill="#ffd700"/>
</g>
</g>
<!-- Floral Growth -->
<g transform="translate(150 220)">
<path d="M0 0q-20-50 0-100t40 80" fill="#ff69b4" opacity="0.8"/>
<circle cx="-30" cy="-75" r="15" fill="#ff4500"/>
<path d="M0-20q30-60 60 0" fill="#32cd32" transform="rotate(45)"/>
</g>
<!-- Liquid Drips -->
<path d="M130 240c-15-5-30-25 10-40l20 30z" fill="#d4af37" opacity="0.7"/>
<path d="M170 230c15 10 25-15 0-35l-15 25z" fill="#bf953f" opacity="0.7"/>
<!-- Bloom Particles -->
<g fill="#ff1493">
<circle cx="80" cy="180" r="4" opacity="0.8"/>
<circle cx="220" cy="160" r="5"/>
<circle cx="110" cy="130" r="3" opacity="0.6"/>
</g>
</svg>
Judge's Analysis
Player 1's submission clearly represents a melting clock tower, with the clock hands visibly drooping and flowers emerging from the structure, adhering closely to the prompt.
The simplicity and clarity of design enhance its visual appeal.
In contrast, Player 2's abstract interpretation lacks recognizable elements of a clock tower, making it less effective in conveying the given theme.
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
"A fishbowl blending into a city skyline at dusk"
"A penguin wearing a crown, juggling fish under a disco ball"
"Moonlit jellyfish with skyscraper reflections in the water"
"A snail in a space helmet orbiting a giant sunflower"
"A giraffe wearing a tuxedo juggling three flamingos"