Creative Challenge
"Melting clock made of cheese, draped over a tiny Eiffel Tower"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cheeseGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffeb3b; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffe82e; stop-opacity:1" />
</radialGradient>
<linearGradient id="towerGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#b0bec5; stop-opacity:1" />
<stop offset="100%" style="stop-color:#78909c; stop-opacity:1" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="#e0f7fa"/>
<g transform="translate(150,180)">
<path d="M0 -75 L10 -40 L5 -40 L10 -20 L-10 -20 L-5 -40 L-10 -40 Z" fill="url(#towerGradient)"/>
<path d="M-10 -20 L-5 0 L5 0 L10 -20 Z" fill="url(#towerGradient)"/>
<path d="M-15 0 L-10 30 L10 30 L15 0 L0 50 Z" fill="url(#towerGradient)"/>
<path d="M-5 50 L5 50 L0 90 Z" fill="url(#towerGradient)"/>
<path d="M-2 90 L2 90 L0 100 Z" fill="url(#towerGradient)"/>
</g>
<g transform="translate(100,85)">
<path d="M10,0 A50,80 0 0,1 70,20 C110,40 60,100 20,60 A50,80 0 0,1 10,0 Z" fill="url(#cheeseGradient)" stroke="#fbc02d" stroke-width="2"/>
<path d="M15,10 A40,30 0 0,1 65,25 C90,40 55,70 20,50 A40,30 0 0,1 15,10 Z" fill="#fff3e0" opacity="0.5"/>
<circle cx="25" cy="25" r="3" fill="#ff7043" />
<circle cx="45" cy="15" r="3" fill="#ff7043" />
<circle cx="35" cy="35" r="3" fill="#ff7043" />
</g>
<path d="M70,20 L75,10 L80,20 L75,30 Z" fill="#ff7043" />
<path d="M10,0 Q0,10 10,20 Q20,10 10,0" fill="#ffe57f" />
<path d="M70,20 Q80,10 70,0 Q60,10 70,20" fill="#ffe57f" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient sky -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Eiffel Tower -->
<g transform="translate(150,220)">
<path d="M-30-80L30-80L0-160" fill="url(#towerGradient)" stroke="#333" stroke-width="2"/>
<path d="M-20-100L20-100L0-140" fill="#444"/>
<path d="M-10-110L10-110L0-120" fill="#555"/>
</g>
<!-- Melting Cheese Clock -->
<g transform="translate(150,100)">
<!-- Clock face -->
<path d="M0,0 Q150,150 300,0 Q240,-150 150,-300 Q60,-150 0,0" fill="#FFD700" stroke="#FFA500" stroke-width="4"/>
<!-- Melting effect -->
<filter id="meltFilter">
<feGaussianBlur stdDeviation="5" result="blur"/>
<feBlend in="blur" in2="SourceGraphic" mode="multiply"/>
</filter>
<path d="M0,0 Q150,150 300,0 Q240,-150 150,-300 Q60,-150 0,0" filter="url(#meltFilter)"/>
<!-- Cheese strands -->
<path d="M50,50 Q60,40 70,30" stroke="#FFD700" stroke-width="3" opacity="0.8"/>
<path d="M100,60 Q110,50 120,40" stroke="#FFD700" stroke-width="3" opacity="0.8"/>
<path d="M200,50 Q190,40 180,30" stroke="#FFD700" stroke-width="3" opacity="0.8"/>
<path d="M250,60 Q240,50 230,40" stroke="#FFD700" stroke-width="3" opacity="0.8"/>
<!-- Clock numbers -->
<g transform="translate(150,150)" font-size="20" font-family="Arial" fill="#FFA500">
<text x="0" y="0" transform="rotate(90)">12</text>
<text x="140" y="-50" transform="rotate(45)">3</text>
<text x="-140" y="-50" transform="rotate(-45)">9</text>
<text x="0" y="-150" transform="rotate(-90)">6</text>
</g>
</g>
<!-- Base with gradient -->
<rect x="50" y="250" width="200" height="50" fill="url(#baseGradient)"/>
<!--Defs for gradients and patterns-->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#87CEEB"/>
<stop offset="1" stop-color="#E0F6FF"/>
</linearGradient>
<linearGradient id="towerGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#666"/>
<stop offset="1" stop-color="#333"/>
</linearGradient>
<linearGradient id="baseGradient" x1="0" y1="0" x2="0" y2="100">
<stop offset="0" stop-color="#8B4513"/>
<stop offset="1" stop-color="#4A2B0F"/>
</linearGradient>
</defs>
</svg>
Judge's Analysis
Player 1's submission clearly depicts a melting clock made of cheese, with a recognizable cheese texture and color, draped over a simplified representation of the Eiffel Tower.
The composition is clear and directly adheres to the prompt.
In contrast, Player 2's image lacks clarity in representing the melting cheese and the Eiffel Tower, making it less effective in conveying the concept.
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
"Moonlit jellyfish ballroom dance"
"Galactic snail surfing on a rainbow comet"
"Alien pastry chef baking under a starry sky"
"Floating clockwork island with a treehouse and waterfall"
"Celestial jellyfish floating in a vivid, starry night sky"
"Melting clock in a digital forest"