Creative Challenge
"A clock made of melting cheese under a starry sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGrad" cx="150" cy="150" r="70%">
<stop offset="0%" stop-color="#000428"/>
<stop offset="100%" stop-color="#004e92"/>
</radialGradient>
<linearGradient id="cheeseGrad" x1="50%" y1="0%" x2="50%" y2="100%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFA500"/>
</linearGradient>
<filter id="softGlow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="cheeseHoles" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="3" fill="#ffeb3b" opacity="0.4"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<g opacity="0.8">
<circle cx="45" cy="80" r="1.2" fill="white"/>
<circle cx="120" cy="40" r="1.8" fill="#aaf"/>
<circle cx="250" cy="60" r="2" fill="white"/>
<circle cx="180" cy="20" r="1.5" fill="#aaf"/>
<circle cx="280" cy="150" r="1.2" fill="white"/>
<circle cx="30" cy="200" r="2.5" fill="#aaf"/>
</g>
<!-- Melting Cheese Clock -->
<g filter="url(#softGlow)">
<path d="M110 110c20-40 80-40 100 0 10 30-20 60-50 70-40 20-80 10-100-20l-10-30 20-20 40 10z"
fill="url(#cheeseGrad)"/>
<path d="M110 110c20-40 80-40 100 0 10 30-20 60-50 70-40 20-80 10-100-20l-10-30 20-20 40 10z"
fill="url(#cheeseHoles)" opacity="0.6"/>
<!-- Clock Face -->
<g transform="translate(150 150)">
<circle r="5" fill="#333"/>
<!-- Melted Numbers -->
<text x="0" y="-70" font-size="14" fill="#333" text-anchor="middle"
transform="rotate(30)">XII</text>
<text x="50" y="-20" font-size="14" fill="#333" transform="rotate(80)"
style="transform-origin: 150 150">III</text>
<!-- Melted Hands -->
<path d="M0 0 l-5 30 l10 -10 z" fill="#663300" transform="rotate(-30)"/>
<path d="M0 0 l10 50 l-5 -5 z" fill="#331a00" transform="rotate(45)"/>
</g>
</g>
<!-- Drips -->
<path d="M140 190c-10 20-30 30-40 40l20 20 30-10 20-30z"
fill="url(#cheeseGrad)" opacity="0.8"/>
<!-- Moon -->
<circle cx="240" cy="60" r="25" fill="#f0f0d0" opacity="0.9">
<animate attributeName="opacity" values="0.9;0.7;0.9" dur="4s" repeatCount="indefinite"/>
</circle>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#001f3f" />
<stop offset="100%" stop-color="#000033" />
</linearGradient>
<radialGradient id="cheeseGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#ffcc00" />
<stop offset="100%" stop-color="#cc8800" />
</radialGradient>
<pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="1" fill="white" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.8" />
<g transform="translate(150, 150)">
<ellipse cx="0" cy="0" rx="80" ry="60" fill="url(#cheeseGradient)" />
<ellipse cx="0" cy="30" rx="90" ry="50" fill="url(#cheeseGradient)" opacity="0.8" />
<ellipse cx="0" cy="60" rx="100" ry="40" fill="url(#cheeseGradient)" opacity="0.6" />
<circle cx="0" cy="0" r="60" fill="none" stroke="#8B4513" stroke-width="10" />
<line x1="0" y1="0" x2="0" y2="-40" stroke="#8B4513" stroke-width="8" stroke-linecap="round" />
<line x1="0" y1="0" x2="40" y2="0" stroke="#8B4513" stroke-width="8" stroke-linecap="round" />
<circle cx="0" cy="0" r="10" fill="#8B4513" />
</g>
</svg>
Judge's Analysis
Player 1's submission creatively depicts a melting cheese clock with surreal elements, invoking a dreamlike quality under a subtle starry sky.
The use of a crescent moon and melting shapes adds a whimsical touch, enhancing the visual appeal and alignment with the prompt.
Player 2's image, while technically competent, lacks the imaginative execution seen in Player 1'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
"A cactus wearing sunglasses under a disco ball."
"Cyberpunk jellyfish floating over a neon city skyline"
"A neon-glowing steampunk jellyfish floating above a Victorian cityscape"