Creative Challenge
"Floating library island under an inverted waterfall, surrealism"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#f5f7fa" />
<stop offset="100%" stop-color="#c3cfe2" />
</radialGradient>
<linearGradient id="waterfallGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#00bfff" />
</linearGradient>
<filter id="blur" x="-5%" y="-5%" width="110%" height="110%">
<feGaussianBlur in="SourceGraphic" stdDeviation="1" />
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g id="invertedWaterfall" transform="translate(150, 100)">
<path d="M-30,0 C-15,-40 15,-40 30,0 L15,100 L-15,100 Z" fill="url(#waterfallGradient)" filter="url(#blur)" />
</g>
<g id="floatingIsland" transform="translate(150, 200)">
<path d="M-50,0 C-60,20 -30,50 0,50 C30,50 60,20 50,0 Z" fill="#8B4513" />
<ellipse cx="0" cy="-10" rx="50" ry="10" fill="#228B22" />
<rect x="-8" y="-20" width="16" height="10" fill="#CD853F" transform="rotate(-10)" />
<rect x="0" y="-22" width="12" height="8" fill="#F4A460" transform="rotate(10)" />
</g>
<text x="10" y="280" fill="#8B0000" font-family="Arial" font-size="10" transform="rotate(-20)">
Surreal Floating Library Island
</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="20%" r="70%">
<stop offset="0%" stop-color="#0b0b3b"/>
<stop offset="100%" stop-color="#4a148c"/>
</radialGradient>
<linearGradient id="waterGrad" gradientTransform="rotate(180)">
<stop offset="0%" stop-color="#00b4d8"/>
<stop offset="100%" stop-color="#0077b6"/>
</linearGradient>
<filter id="turbulence" x="0" y="0">
<feTurbulence type="turbulence" baseFrequency="0.02" numOctaves="3"/>
<feDisplacementMap in="SourceGraphic" scale="8"/>
</filter>
<clipPath id="waterClip">
<path d="M150 80 Q180 120 210 80 T270 80 L270 300 30 300 30 80Z"/>
</clipPath>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Inverted waterfall -->
<g clip-path="url(#waterClip)" filter="url(#turbulence)">
<path d="M0 300 Q50 250 100 300 T200 250 L300 300Z" fill="url(#waterGrad)"/>
<path d="M-20 320 Q150 180 320 320" stroke="#a8dadc" stroke-width="4" stroke-linecap="round" stroke-dasharray="4 8"/>
</g>
<!-- Floating island -->
<g transform="translate(60 160)">
<path d="M0 0 Q50-30 100 0 Q150 40 90 70 Q30 100 0 70Z" fill="#2d6a4f"/>
<path d="M20 40 L40 20 60 35 80 15 100 30" stroke="#f4a261" stroke-width="3"/>
<!-- Library structure -->
<rect x="30" y="-60" width="60" height="80" fill="#6c584c"/>
<path d="M30-60 L90-60 100-70 20-70Z" fill="#582f0e"/>
<rect x="40" y="-50" width="40" height="10" fill="#a68a64"/>
<!-- Book dome -->
<path d="M50-70 Q70-90 90-70 T130-50 Q100-30 70-30 Q40-30 10-50Z" fill="#8ecae6"/>
<path d="M60-65 L80-65 M70-60 L70-70" stroke="#023047"/>
</g>
<!-- Surreal elements -->
<g stroke="#f1faee">
<path d="M200 50 Q220 70 240 50" stroke-width="2"/>
<circle cx="250" cy="40" r="3" fill="#e63946"/>
</g>
<!-- Floating books -->
<g transform="translate(180 100)">
<rect x="0" y="0" width="15" height="10" fill="#d62828"/>
<rect x="20" y="5" width="12" height="8" fill="#f77f00" transform="rotate(15)"/>
<rect x="40" y="-3" width="10" height="6" fill="#fcbf49" transform="rotate(-10)"/>
</g>
<!-- Gravity-defying fish -->
<g transform="translate(150 200)">
<path d="M0 0 Q10-15 20 0 T40 0" fill="#457b9d"/>
<path d="M15-5 L25 0 15 5" fill="#a8dadc"/>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the surrealism of a floating library island under an inverted waterfall more effectively through abstract shapes and vibrant colors, creating a more visually intriguing and imaginative composition.
The use of contrasting colors and dynamic shapes adds depth and a sense of movement, enhancing the surreal aspect.
In contrast, Player 1's image is simpler and lacks the creativity and complexity seen in Player 2's work.
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
"Flying sandwich service delivering to floating picnic tables"
"Chameleon playing chess against a flamingo in a jungle setting"
"Clockwork owl with kaleidoscope wings"
"Frog riding a unicycle on a rainbow"
"Surreal clock melting over a mountain peak, Daliesque style"
"A clock made of clouds with birds as hands, in a surrealism style"