Creative Challenge
"Surrealist Salvador Dalí melting clocks in a cosmic underwater scene"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGrad">
<stop offset="0%" stop-color="#1a1a33"/>
<stop offset="100%" stop-color="#4a4a77"/>
</linearGradient>
<radialGradient id="clockGrad">
<stop offset="0%" stop-color="#ffd700"/>
<stop offset="70%" stop-color="#ffa500"/>
<stop offset="100%" stop-color="#ff6347"/>
</radialGradient>
<pattern id="waterPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="rgba(255,255,255,0.1)"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#bgGrad)"/>
<g transform="translate(150,150)">
<!-- Melting Clocks -->
<path d="M-60,0 Q-30,30 0,0 T60,0 Q30,-30 0,0"
fill="url(#clockGrad)" stroke="#ffd700" stroke-width="2"/>
<path d="M-40,40 Q-20,60 0,40 T40,40 Q20,20 0,40"
fill="url(#clockGrad)" stroke="#ffd700" stroke-width="2"/>
<!-- Cosmic Elements -->
<circle cx="-80" cy="-80" r="30" fill="url(#clockGrad)"
transform="scale(0.8) rotate(45)"/>
<circle cx="80" cy="-80" r="30" fill="url(#clockGrad)"
transform="scale(0.8) rotate(-45)"/>
<!-- Underwater Elements -->
<path d="M-100,100 Q-50,150 0,100 T100,100 Q50,50 0,100"
fill="url(#waterPattern)" stroke="#4a4a77" stroke-width="1"/>
<path d="M-200,50 Q-150,100 -100,50 T0,50 Q-50,0 -100,50"
fill="url(#waterPattern)" stroke="#4a4a77" stroke-width="1"/>
<!-- Fish -->
<path d="M-30,0 Q-20,10 -10,0 T10,0 Q20,-10 30,0"
fill="#00ff99" stroke="#00cc66" stroke-width="1"/>
<path d="M-50,50 Q-40,60 -30,50 T-10,50 Q0,40 -10,50"
fill="#00ff99" stroke="#00cc66" stroke-width="1"/>
<!-- Abstract Shapes -->
<circle cx="0" cy="0" r="50" fill="none" stroke="#ffffff" stroke-width="0.5"
stroke-dasharray="5,5"/>
<circle cx="0" cy="0" r="40" fill="none" stroke="#ffffff" stroke-width="0.5"
stroke-dasharray="5,5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cosmicGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4e1a7b; stop-opacity:1" />
<stop offset="100%" style="stop-color:#0073a8; stop-opacity:1" />
</linearGradient>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffe0b2; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc80; stop-opacity:1" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#cosmicGradient)" />
<g>
<path d="M100 50 Q80 80 100 110 Q120 150 140 110 Q140 80 100 50 Z" fill="url(#clockGradient)" stroke="#af7c55" stroke-width="2" />
<text x="110" y="75" font-family="Georgia" font-size="12" fill="#4e342e" transform="rotate(-15, 110, 75)">12</text>
<path d="M100 50 C90 70 90 120 110 90" stroke="#af7c55" stroke-width="3" fill="transparent" />
<path d="M180 150 Q160 180 180 210 Q200 240 220 210 Q220 180 180 150 Z" fill="url(#clockGradient)" stroke="#af7c55" stroke-width="2" />
<text x="190" y="175" font-family="Georgia" font-size="12" fill="#4e342e" transform="rotate(20, 190, 175)">6</text>
<path d="M180 150 C170 170 170 220 190 190" stroke="#af7c55" stroke-width="3" fill="transparent" />
<path d="M50 230 Q30 260 50 290 Q70 320 90 290 Q90 260 50 230 Z" fill="url(#clockGradient)" stroke="#af7c55" stroke-width="2" />
<text x="60" y="255" font-family="Georgia" font-size="12" fill="#4e342e" transform="rotate(25, 60, 255)">9</text>
<path d="M50 230 C40 250 40 300 60 270" stroke="#af7c55" stroke-width="3" fill="transparent" />
<g fill="green" opacity="0.6">
<circle cx="60" cy="220" r="5" />
<circle cx="80" cy="240" r="7" />
<circle cx="100" cy="230" r="6" />
<circle cx="130" cy="240" r="8" />
<circle cx="150" cy="220" r="4" />
</g>
<g fill="lime" opacity="0.4">
<ellipse cx="250" cy="80" rx="15" ry="8" />
<ellipse cx="230" cy="100" rx="12" ry="5" />
<ellipse cx="270" cy="70" rx="10" ry="6" />
</g>
</g>
<text x="150" y="150" font-family="Arial" font-size="20" fill="#ffffff" text-anchor="middle" stroke="#000000" stroke-width="0.5">Time Flows</text>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt with the inclusion of melting clock faces, which are a clear nod to Dalí's surrealist style.
The composition effectively conveys the theme of time in a cosmic underwater setting.
In contrast, Player 1's piece, while visually appealing, lacks direct references to the melting clocks and surrealist elements critical 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"