Creative Challenge
"Surreal clock melting over a cactus in a desert sunset, in Salvador Dali's style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert background -->
<rect x="0" y="0" width="300" height="300" fill="#FFC67D" />
<linearGradient id="sunset" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFA07A" />
<stop offset="50%" stop-color="#FFC080" />
<stop offset="100%" stop-color="#FFC67D" />
</linearGradient>
<rect x="0" y="150" width="300" height="150" fill="url(#sunset)" />
<!-- Cactus -->
<g transform="translate(150, 175)">
<rect x="-10" y="-50" width="20" height="100" fill="#008000" rx="5" />
<rect x="-5" y="-75" width="10" height="50" fill="#008000" rx="5" />
<circle cx="0" cy="-25" r="25" fill="#008000" />
</g>
<!-- Melting clock -->
<g transform="translate(150, 50)">
<path d="M -50 0 C -50 50, 50 50, 50 0" stroke="#000" stroke-width="5" fill="none" />
<path d="M -50 0 C -50 -50, 50 -50, 50 0" stroke="#000" stroke-width="5" fill="none" />
<g transform="translate(0, -25)">
<circle cx="0" cy="0" r="25" fill="#FFF" stroke="#000" stroke-width="5" />
<line x1="0" y1="0" x2="0" y2="50" stroke="#000" stroke-width="5" />
<text x="0" y="0" font-size="24" font-family="Arial" text-anchor="middle">12</text>
</g>
<g transform="translate(0, 25)">
<circle cx="0" cy="0" r="25" fill="#FFF" stroke="#000" stroke-width="5" />
<line x1="0" y1="0" x2="0" y2="-50" stroke="#000" stroke-width="5" />
<text x="0" y="0" font-size="24" font-family="Arial" text-anchor="middle">6</text>
</g>
</g>
<!-- Melting effect -->
<g transform="translate(150, 50)">
<path d="M -50 0 C -50 50, 50 50, 50 0" stroke="#000" stroke-width="5" fill="none" />
<path d="M -50 0 C -50 -50, 50 -50, 50 0" stroke="#000" stroke-width="5" fill="none" />
<g transform="translate(0, -25)">
<path d="M 0 0 C 0 25, 25 25, 25 0" fill="#FFF" stroke="#000" stroke-width="5" />
</g>
<g transform="translate(0, 25)">
<path d="M 0 0 C 0 -25, 25 -25, 25 0" fill="#FFF" stroke="#000" stroke-width="5" />
</g>
</g>
<!-- Surreal effect -->
<g transform="translate(150, 50)">
<ellipse cx="0" cy="0" rx="50" ry="25" fill="#FFF" stroke="#000" stroke-width="5" opacity="0.5" />
<ellipse cx="0" cy="0" rx="25" ry="50" fill="#FFF" stroke="#000" stroke-width="5" opacity="0.5" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunsetGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:rgb(255,94,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,175,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:rgb(34,139,34);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,100,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="meltingClockGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" style="stop-color:rgb(240,248,255);stop-opacity:1" />
<stop offset="0.5%" style="stop-color:rgb(255,140,0);stop-opacity:0.8" />
<stop offset="100%" style="stop-color:rgb(173,216,230);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sunsetGradient)" />
<path d="M150,250 C140,180 120,140 115,100 C110,60 135,80 140,95 C145,80 190,50 160,100 C130,150 170,175 150,250 Z" fill="url(#cactusGradient)" />
<path d="M140,200 C130,180 110,170 110,140 C110,120 140,120 150,130 C160,150 140,160 140,180 C140,190 145,200 150,205 C155,210 165,210 175,205 C185,195 185,170 180,150 C175,120 200,150 210,160 C220,170 230,190 210,200 C190,210 170,200 140,200 Z" fill="url(#meltingClockGradient)" />
<ellipse cx="160" cy="145" rx="20" ry="3" fill="black" />
<line x1="160" y1="145" x2="155" y2="165" stroke="black" stroke-width="2" />
<line x1="160" y1="145" x2="175" y2="150" stroke="black" stroke-width="2" />
<circle cx="160" cy="145" r="2" fill="black" />
<path d="M210,195 L200,205 L220,210 Z" fill="url(#meltingClockGradient)" />
</svg>
Judge's Analysis
Player 2's submission better captures the surreal essence of a melting clock over a cactus with a vibrant desert sunset backdrop, reminiscent of Salvador Dali's style.
The smooth gradient and abstract forms create a more cohesive and visually appealing composition.
Player 1's image lacks the fluidity and detail necessary to evoke the surreal quality described in 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
"Two-legged cat juggling four colorful fish under a rainbow arch"
"Floating castle tangled in glowing balloon strings"
"Giraffe wearing a tuxedo, holding an umbrella on a moonlit beach"
"Robot dinosaur juggling planets in a circus"
"Uneven chessboard floating above a serene koi pond"
"Singing ice cream cone on a stage with spotlights"