Creative Challenge
"Melting clock on a skateboarding pizza slice under a disco ball"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="clockGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#CD7F32;stop-opacity:1" />
</linearGradient>
<radialGradient id="discoGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FF0000;stop-opacity:1" />
<stop offset="33%" style="stop-color:#00FF00;stop-opacity:1" />
<stop offset="66%" style="stop-color:#0000FF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0" />
</radialGradient>
</defs>
<path d="M150 250 Q 120 220 150 180 Q 180 140 150 120 Q 120 100 150 80 Q 180 60 150 30 Q 120 0 150 20 Q 180 40 150 60 Z" fill="url(#clockGrad)" />
<path d="M100 150 L 200 150 L 150 250 Z" fill="#FF6B6B">
<animate attributeName="points" from="100,150 200,150 150,250" to="100,150 200,150 150,230" dur="1s" repeatCount="indefinite" />
</path>
<rect x="130" y="220" width="40" height="10" rx="5" fill="#DEB887" />
<circle cx="150" cy="160" r="5" fill="#FF4500" />
<circle cx="150" cy="140" r="5" fill="#FF4500" />
<path d="M140 240 L 160 240 L 155 255" fill="#FFD700" />
<circle cx="150" cy="100" r="80" fill="url(#discoGrad)" />
<g transform="translate(150,180)">
<rect x="-20" y="-20" width="40" height="40" rx="10" fill="#2F4F4F" />
<circle cx="-15" cy="-15" r="5" fill="#FFFFFF" />
<circle cx="15" cy="-15" r="5" fill="#FFFFFF" />
<rect x="-20" y="10" width="40" height="5" rx="2" fill="#FFA500" />
</g>
<g transform="translate(150,220)">
<rect x="-20" y="-20" width="40" height="40" rx="20" fill="#FF6B6B" />
<rect x="-10" y="-10" width="20" height="20" rx="10" fill="#FFFFFF" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="meltingClock" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFCC00; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6699; stop-opacity:1" />
</linearGradient>
<radialGradient id="pizzaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#DCA27A; stop-opacity:1" />
<stop offset="100%" style="stop-color:#CE8B55; stop-opacity:1" />
</radialGradient>
<pattern id="discoBallPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect x="0" y="0" width="10" height="10" fill="white" />
<circle cx="5" cy="5" r="3" fill="grey" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="#4A4E69" />
<g transform="translate(30, 230)">
<path d="M40 0 Q10 20, 0 40 Q20 70, 50 50 Q90 40, 80 0 Q60 20, 40 0 Z" fill="url(#pizzaGradient)" />
<ellipse cx="25" cy="40" rx="8" ry="4" fill="white" />
<ellipse cx="35" cy="40" rx="7" ry="3" fill="red" />
<ellipse cx="20" cy="45" rx="5" ry="2" fill="green" />
<ellipse cx="40" cy="45" rx="5" ry="2" fill="black" />
<path d="M15 60 L0 70 L5 75 Q10 80, 20 75 Q30 70, 15 60 Z" fill="#9B59B6" />
<path d="M25 50 Q23 60, 27 60 Q25 58, 25 50 Z" fill="#FDCB82" />
</g>
<g transform="translate(200, 95)">
<ellipse cx="0" cy="0" rx="30" ry="45" fill="url(#meltingClock)" />
<text x="-10" y="-10" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">12</text>
<text x="-15" y="1" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">9</text>
<text x="5" y="15" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">3</text>
<text x="-10" y="25" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">6</text>
<line x1="-5" y1="0" x2="5" y2="0" stroke="black" stroke-width="2" />
<path d="M-8 10 Q-5 20, -4 10" stroke="black" stroke-width="1" fill="none" />
<path d="M8 10 Q5 20, 4 10" stroke="black" stroke-width="1" fill="none" />
</g>
<g transform="translate(150, 30)">
<rect x="-20" y="-20" width="40" height="40" fill="url(#discoBallPattern)" />
<circle cx="0" cy="0" r="20" stroke="silver" stroke-width="3" fill="none" />
<ellipse cx="0" cy="0" rx="20" ry="10" fill="none" stroke="lightblue" stroke-width="0.5" />
<ellipse cx="0" cy="0" rx="15" ry="7" fill="none" stroke="lightpink" stroke-width="0.5" />
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the prompt with clearer elements: a visible disco ball, a melting clock with numbers, and a pizza slice.
The composition is more coherent and visually appealing, while Player 1's image lacks clarity and recognizable elements related to the 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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"