Creative Challenge
"Dali-inspired melting clock over Tim Cook's smiling face"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="faceGradient" cx="50%" cy="50%" r="60%">
<stop offset="0%" stop-color="#ffeadb" />
<stop offset="100%" stop-color="#ffd3a4" />
</radialGradient>
<linearGradient id="meltingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#d6ccff"/>
<stop offset="100%" stop-color="#a390ff"/>
</linearGradient>
<clipPath id="faceClip">
<ellipse cx="150" cy="150" rx="80" ry="110"/>
</clipPath>
<pattern id="eyePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#202020"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#f7f2ea"/>
<g clip-path="url(#faceClip)">
<ellipse cx="150" cy="150" rx="80" ry="110" fill="url(#faceGradient)" />
<path d="M100,130 Q150,70 200,130" fill="none" stroke="#7f4242" stroke-width="8" />
<circle cx="130" cy="120" r="6" fill="url(#eyePattern)" />
<circle cx="170" cy="120" r="6" fill="url(#eyePattern)" />
<path d="M120,160 C130,180 170,180 180,160" fill="none" stroke="#7f4242" stroke-width="5" />
</g>
<g transform="translate(80, 20) rotate(15)">
<path d="M0,50 C25,10 75,10 100,50 Q90,60 85,80 T40,130 Q20,140 0,130 Z" fill="url(#meltingGradient)" />
<ellipse cx="50" cy="45" rx="48" ry="45" fill="url(#meltingGradient)" />
<circle cx="50" cy="45" r="45" fill="none" stroke="#734d8c" stroke-width="2"/>
<path d="M50,45 L50,85" stroke="#734d8c" stroke-width="3" />
<path d="M50,45 L35,60" stroke="#734d8c" stroke-width="3" />
<path d="M50,45 L65,30" stroke="#734d8c" stroke-width="3" />
<text x="45" y="40" fill="#fff" style="font-size:10px; font-weight:bold;">12</text>
<text x="85" y="47" fill="#fff" style="font-size:10px; font-weight:bold;">3</text>
<text x="45" y="85" fill="#fff" style="font-size:10px; font-weight:bold;">6</text>
<text x="5" y="47" fill="#fff" style="font-size:10px; font-weight:bold;">9</text>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradientSkin" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#fddbb0;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#f4a460;stop-opacity:1"/>
</linearGradient>
<linearGradient id="gradientClock" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff8c00;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#ff4081;stop-opacity:1"/>
</linearGradient>
<filter id="faceShadow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="5"/>
<feOffset dx="2" dy="2" result="offsetblur"/>
<feFlood flood-color="rgba(0,0,0,0.5)"/>
<feComposite in2="offsetblur" operator="in"/>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="100%" height="100%" fill="#ffffff"/>
<g transform="translate(150,150)">
<g filter="url(#faceShadow)">
<ellipse rx="50" ry="70" fill="url(#gradientSkin)"/>
</g>
<circle cx="0" cy="-30" r="10" fill="#000000"/>
<circle cx="-20" cy="15" r="8" fill="#000000"/>
<circle cx="20" cy="15" r="8" fill="#000000"/>
<path d="M -20 30 Q 0 50 20 30" fill="none" stroke="#000000" stroke-width="3"/>
</g>
<g transform="translate(60,40) rotate(-20)" fill="url(#gradientClock)" stroke="#000" stroke-width="2" stroke-linejoin="round">
<path d="M30,10 C50,-10 100,-10 110,10 L110,90 C100,110 50,110 30,90 Z" />
<path d="M100,30 L70,0" stroke="#000" stroke-width="2" stroke-linecap="round"/>
<path d="M94,47 A12,7 0 0,1 86,47" fill="#000"/>
<path d="M80,60 A8,4 0 0,1 76,60" fill="#000"/>
</g>
</svg>
Judge's Analysis
Player 1's submission captures the Dali-inspired concept effectively by incorporating a melting clock that visually resembles the surrealist style.
The clock is creatively placed on a simple face, adhering closely to the prompt.
Player 2's submission lacks the distinctive melting clock element and does not evoke the surrealist theme as strongly, making Player 1's image more aligned and visually appealing for this prompt.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"