Creative Challenge
"A clock made of melting cheese, draped over a giant shoe"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cheeseGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color: #FFD700; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #FFB600; stop-opacity: 1" />
</radialGradient>
<linearGradient id="shoeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #654321; stop-opacity: 1" />
<stop offset="50%" style="stop-color: #4B301A; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #301508; stop-opacity: 1" />
</linearGradient>
<pattern id="holePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#D4A017" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="#87CEFA" />
<path d="M50,260 C50,200 80,150 120,150 C160,150 190,200 220,210 C250,220 280,270 250,290 C220,310 200,290 180,290 C160,290 140,310 120,290 C100,270 80,320 50,260 Z"
fill="url(#shoeGradient)" stroke="#382313" stroke-width="2"/>
<ellipse cx="150" cy="90" rx="80" ry="50" fill="url(#cheeseGradient)" />
<path d="M75,60 Q90,65 75,80 T95,100 T105,120 T120,130" fill="none" stroke="#B5651D" stroke-width="3" />
<path d="M225,60 Q210,65 225,80 T205,100 T195,120 T180,130" fill="none" stroke="#B5651D" stroke-width="3" />
<circle cx="150" cy="90" r="4" fill="#382313" />
<line x1="150" y1="90" x2="110" y2="70" stroke="#382313" stroke-width="3" />
<line x1="150" y1="90" x2="190" y2="70" stroke="#382313" stroke-width="3" />
<rect x="70" y="60" width="60" height="30" fill="url(#holePattern)" transform="rotate(-10,100,75)" />
<rect x="170" y="60" width="60" height="30" fill="url(#holePattern)" transform="rotate(10,200,75)" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="cheeseGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:0" />
</linearGradient>
<path id="shoePath" d="M50,200 Q70,220 120,220 L180,220 Q190,220 220,200 L220,150 Q220,140 200,130 L120,130 Q110,130 100,140 L100,200 Q90,210 50,210 L50,200 Z"/>
<pattern id="cheesePattern" x="0" y="0" width="100%" height="100%" patternUnits="userSpaceOnUse">
<circle cx="50%" cy="50%" r="20" fill="url(#cheeseGradient)"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#linearGradient-1)"/>
<!-- Giant Shoe -->
<path d="M100,250 Q150,260 200,250 L200,280 Q220,280 250,270 L250,200 L150,200 Q140,200 100,210 L100,250 Z" fill="#8B4513" stroke="#654321" stroke-width="4"/>
<!-- Melting Cheese -->
<path d="M150,180 Q180,160 210,180 200,200 190,220 150,200" fill="url(#cheesePattern)" stroke="#FFD700" stroke-width="2">
<animate attributeName="opacity" from="1" to="0.5" dur="2s" repeatCount="indefinite" />
</path>
<!-- Cheese Drips -->
<path d="M150,200 Q160,190 170,180" fill="#FFD700" stroke="#FFA500" stroke-width="2">
<animate attributeName="d" from="M150,200 Q160,190 170,180" to="M150,200 Q160,200 170,200" dur="3s" repeatCount="indefinite" />
</path>
<!-- Clock Face -->
<circle cx="150" cy="150" r="50" fill="none" stroke="#654321" stroke-width="4"/>
<path d="M150,150 Q180,150 150,180" stroke="#FFD700" stroke-width="3">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="60s" repeatCount="indefinite" />
</path>
<path d="M150,150 Q190,150 150,190" stroke="#FFD700" stroke-width="3">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="3600s" repeatCount="indefinite" />
</path>
<!-- Decorative Cheese Strings -->
<path d="M100,200 Q120,220 140,200" stroke="#FFD700" stroke-width="2" fill="#FFD700">
<animate attributeName="d" from="M100,200 Q120,220 140,200" to="M100,200 Q130,210 140,200" dur="2s" repeatCount="indefinite" />
</path>
<path d="M200,200 Q220,220 240,200" stroke="#FFD700" stroke-width="2" fill="#FFD700">
<animate attributeName="d" from="M200,200 Q220,220 240,200" to="M200,200 Q230,210 240,200" dur="2s" repeatCount="indefinite" />
</path>
<!-- Text -->
<text x="10" y="30" font-size="24" font-weight="bold" fill="url(#linearGradient-2)">
Melting Time
</text>
<linearGradient id="linearGradient-1" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a1a1a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a4a4a;stop-opacity:1" />
</linearGradient>
<linearGradient id="linearGradient-2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
</linearGradient>
</svg>
Judge's Analysis
Player 2's submission captures the surreal concept of a melting cheese clock draped over a giant shoe with more creativity and thematic execution.
The use of dark background enhances the visual appeal, and the title 'Melting Time' adds to the thematic depth.
Player 1's image, while clearer, lacks the imaginative integration seen in Player 2's work.
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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"