Creative Challenge
"Clock melting over a skyscraper at sunrise, in surrealism style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="sunriseGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:#ff6600;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc00;stop-opacity:1" />
</linearGradient>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ff6600;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc00;stop-opacity:0.5" />
</radialGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
<g transform="translate(150, 150)">
<path d="M-50,-50 Q-25,50 50,50 T125,-50 T50,-150 T-25,-150" stroke="url(#clockGradient)" stroke-width="10" fill="none"/>
<circle cx="0" cy="0" r="40" fill="url(#clockGradient)"/>
<path d="M-10,0 L10,0" stroke="white" stroke-width="2" fill="none"/>
<path d="M0,-20 L0,20" stroke="white" stroke-width="2" fill="none"/>
</g>
<rect x="0" y="100" width="300" height="200" fill="url(#sunriseGradient)"/>
<g transform="translate(50, 200)">
<rect x="0" y="0" width="100" height="50" fill="silver" rx="10"/>
<rect x="0" y="50" width="100" height="50" fill="silver" rx="10"/>
<rect x="0" y="100" width="100" height="50" fill="silver" rx="10"/>
<rect x="0" y="150" width="100" height="50" fill="silver" rx="10"/>
</g>
<g transform="translate(100, 150)">
<rect x="0" y="0" width="100" height="50" fill="silver" rx="10"/>
<rect x="0" y="50" width="100" height="50" fill="silver" rx="10"/>
<rect x="0" y="100" width="100" height="50" fill="silver" rx="10"/>
</g>
<g transform="translate(150, 100)">
<rect x="0" y="0" width="100" height="50" fill="silver" rx="10"/>
<rect x="0" y="50" width="100" height="50" fill="silver" rx="10"/>
</g>
<g transform="translate(200, 50)">
<rect x="0" y="0" width="100" height="50" fill="silver" rx="10"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunriseGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFA500; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF4500; stop-opacity:1" />
</linearGradient>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFFFFF; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA500; stop-opacity:1" />
</radialGradient>
<pattern id="brickPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#8B4513" />
<rect width="6" height="2" y="4" fill="#FFFFFF" />
<rect width="10" height="2" y="8" fill="#FFFFFF" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sunriseGradient)" />
<rect x="120" y="150" width="60" height="150" fill="url(#brickPattern)" stroke="#5C462D" stroke-width="2" />
<rect x="130" y="120" width="40" height="30" fill="url(#brickPattern)" stroke="#5C462D" stroke-width="2" />
<ellipse cx="150" cy="150" rx="50" ry="30" fill="url(#clockGradient)" />
<circle cx="150" cy="150" r="48" fill="none" stroke="#FFC0CB" stroke-width="2" />
<line x1="150" y1="150" x2="150" y2="120" stroke="#000" stroke-width="2" />
<line x1="150" y1="150" x2="170" y2="150" stroke="#000" stroke-width="2" />
<path d="M140,125 C120,130 100,145 130,165 Q150,185 170,165 T170,125 Z" fill="url(#clockGradient)" />
<path d="M135,165 Q160,210 100,220 C105,190 128,178 135,165 Z" fill="#FFC0CB" opacity="0.8" />
<text x="142" y="155" font-family="Verdana" font-size="16" fill="#000" font-weight="bold">12</text>
<text x="160" y="195" font-family="Verdana" font-size="16" fill="#000" font-weight="bold">6</text>
<circle cx="150" cy="150" r="5" fill="#000" />
<defs>
<filter id="meltingEffect">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
<feDisplacementMap in2="SourceGraphic" in="SourceGraphic" scale="5" />
</filter>
</defs>
<g filter="url(#meltingEffect)">
<ellipse cx="150" cy="180" rx="55" ry="25" fill="rgba(255, 205, 0, 0.6)" />
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the surrealism style with a clearer depiction of a melting clock over a skyscraper, utilizing gradients and transparency to create a visually appealing sunrise effect.
Player 1's image lacks detailed representation and creativity, resulting in a less engaging interpretation of 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
"Cat in a spacesuit floating above a moonlit ocean"
"Lonely penguin on a flamingo float in a desert oasis"
"Chameleon blending into a giant cosmic snail shell"
"A jellyfish cityscape at sunset"
"Giraffe in a scuba suit diving for coral in a colorful reef"
"Giraffe juggling planets in a cosmic circus ring"