Creative Challenge
"Surrealist floating island with clock-tower trees"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E0B0FF;stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA07A;stop-opacity:1" />
</linearGradient>
</defs>
<g transform="translate(150,150)">
<!-- Floating Island Base -->
<path d="M-100,-50 Q-100,-75 -75,-100 T0,-100 Q75,-100 100,-75 T100,50 Q100,75 75,100 T0,100 Q-75,100 -100,75 T-100,50"
fill="url(#grad1)" stroke="#4B6483" stroke-width="2"/>
<!-- Clock Tower Tree 1 -->
<g transform="translate(-40, -60)">
<rect x="-20" y="-80" width="40" height="120" rx="10" fill="#3A506B" />
<circle cx="0" cy="0" r="30" fill="url(#grad2)" stroke="#FFD700" stroke-width="2">
<animate attributeName="r" from="30" to="35" dur="2s" repeatCount="indefinite" />
</circle>
<path d="M-20,50 L0,30 L20,50" fill="#FFA07A" />
<rect x="-15" y="-30" width="30" height="20" rx="5" fill="#808080" />
</g>
<!-- Clock Tower Tree 2 -->
<g transform="translate(40, -60)">
<rect x="-20" y="-80" width="40" height="120" rx="10" fill="#3A506B" />
<circle cx="0" cy="0" r="30" fill="url(#grad2)" stroke="#FFD700" stroke-width="2" />
<path d="M-20,50 L0,30 L20,50" fill="#FFA07A" />
<rect x="-15" y="-30" width="30" height="20" rx="5" fill="#808080" />
</g>
<!-- Abstract Plants -->
<g transform="translate(-60, 20)">
<path d="M0,0 Q-30,-20 -20,-40 T20,-40 Q30,-20 0,0" fill="#90EE90" />
<circle cx="15" cy="-20" r="5" fill="#FF6B6B" />
<circle cx="-15" cy="-20" r="5" fill="#FF6B6B" />
</g>
<!-- Floating Elements -->
<g opacity="0.7">
<circle cx="0" cy="-80" r="15" fill="#FFD700" />
<path d="M-30,-70 L-20,-50 L-10,-70" fill="#87CEEB" />
<path d="M30,-70 L20,-50 L10,-70" fill="#87CEEB" />
</g>
<!-- Gear-like Clouds -->
<g transform="translate(0, -100)">
<circle cx="0" cy="0" r="20" fill="#FFF" stroke="#87CEEB" stroke-width="2" />
<path d="M-20,0 L0,-20 L20,0 L0,20 Z" fill="#87CEEB" />
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Gradient definitions -->
<linearGradient id="sky" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#87CEEB" />
<stop offset="1" stop-color="#34A8FF" />
</linearGradient>
<radialGradient id="cloud" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0" stop-color="#FFFFFF" />
<stop offset="1" stop-color="#CCCCCC" />
</radialGradient>
<linearGradient id="tree" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#228B22" />
<stop offset="1" stop-color="#3E8E41" />
</linearGradient>
<linearGradient id="clock" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#666666" />
<stop offset="1" stop-color="#333333" />
</linearGradient>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
<!-- Clouds -->
<circle cx="100" cy="50" r="30" fill="url(#cloud)" />
<circle cx="200" cy="70" r="40" fill="url(#cloud)" />
<circle cx="250" cy="120" r="20" fill="url(#cloud)" />
<!-- Island -->
<path d="M150,150 C150,120 180,120 180,150 L220,150 C220,180 180,180 180,150 Z" fill="#964B00" />
<!-- Clock-tower trees -->
<g transform="translate(180,150)">
<path d="M0,0 L-20,50 L-20,100 L0,150 L20,100 L20,50 Z" fill="url(#tree)" />
<circle cx="0" cy="75" r="10" fill="url(#clock)" />
<circle cx="0" cy="125" r="10" fill="url(#clock)" />
</g>
<g transform="translate(220,120)">
<path d="M0,0 L-15,40 L-15,80 L0,120 L15,80 L15,40 Z" fill="url(#tree)" />
<circle cx="0" cy="60" r="8" fill="url(#clock)" />
<circle cx="0" cy="100" r="8" fill="url(#clock)" />
</g>
<!-- Details -->
<circle cx="180" cy="150" r="5" fill="#FFFFFF" />
<circle cx="220" cy="120" r="3" fill="#FFFFFF" />
<path d="M180,150 L220,120" stroke="#FFFFFF" stroke-width="2" />
</svg>
Judge's Analysis
Player 2's submission captures the surrealist theme with floating bubbles and abstract clock-tower trees, creating a dreamlike atmosphere.
The composition is visually balanced and adheres closely to the prompt.
While Player 1's image is creative, it lacks the surrealist elements and clarity found 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
"Gravity-defying giraffe on roller skates juggling planets"
"Moonlit jellyfish symphony, dancing above a neon coral stage"
"Octopus juggling planets under a starlit ocean"
"A giraffe wearing astronaut gear floating in a galaxy of swirling stars"
"Lighthouse floating in a teacup on a stormy sea"
"Neon giraffe floating in space with a rainbow spacesuit"