Creative Challenge
"Surreal moonlit desert with a floating, oversized clock and cacti shadows"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="moonlight" cx="150" cy="150" r="150" fx="150" fy="50">
<stop offset="0%" stop-color="#192A56"/>
<stop offset="100%" stop-color="#000000"/>
</radialGradient>
<circle cx="150" cy="150" r="150" fill="url(#moonlight)"/>
<path d="M50 250 C 75 200, 100 275, 150 250 C 200 225, 225 275, 250 250" fill="#273c75" style="filter:url(#ds);" />
<filter id="ds">
<feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="warp" />
<feDisplacementMap in="SourceGraphic" in2="warp" scale="35" xChannelSelector="R" yChannelSelector="B" />
</filter>
<ellipse cx="70" cy="270" rx="15" ry="25" fill="#3d558f" transform="rotate(-10, 70, 270)" />
<ellipse cx="120" cy="260" rx="25" ry="35" fill="#6a7798" transform="rotate(5, 120, 260)" />
<ellipse cx="220" cy="280" rx="30" ry="45" fill="#44557d" transform="rotate(15, 220, 280)" />
<ellipse cx="270" cy="270" rx="20" ry="30" fill="#5f709a" transform="rotate(-5, 270, 270)" />
<g transform="translate(100, 50) scale(0.75)">
<circle cx="50" cy="50" r="50" fill="none" stroke="#dcdde1" stroke-width="2"/>
<path d="M50 20 L50 10" stroke="#dcdde1" stroke-width="2" stroke-linecap="round" transform="rotate(20 50 50)"/>
<path d="M50 20 L50 10" stroke="#dcdde1" stroke-width="2" stroke-linecap="round" transform="rotate(-10 50 50)"/>
<path d="M50 80 L50 70" stroke="#dcdde1" stroke-width="2" stroke-linecap="round" transform="rotate(150 50 50)"/>
<path d="M50 80 L50 70" stroke="#dcdde1" stroke-width="2" stroke-linecap="round" transform="rotate(170 50 50)"/>
</g>
<radialGradient id="moonGlow" cx="200" cy="60" r="50" fx="200" fy="70">
<stop offset="0%" stop-color="rgba(220, 221, 225, 0.5)"/>
<stop offset="100%" stop-color="transparent"/>
</radialGradient>
<circle cx="200" cy="60" r="40" fill="url(#moonGlow)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<linearGradient id="moonlight" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#6d6eff" stop-opacity="1" />
<stop offset="100%" stop-color="#b3b8cf" stop-opacity="1" />
</linearGradient>
<radialGradient id="clockface" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="1" />
<stop offset="100%" stop-color="#9c9c9c" stop-opacity="1" />
</radialGradient>
<linearGradient id="cactus-shadow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4e5338" stop-opacity="0.7" />
<stop offset="100%" stop-color="#232323" stop-opacity="0.7" />
</linearGradient>
</defs>
<!-- Moonlit Desert Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#moonlight)" />
<!-- Oversized Floating Clock -->
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="80" fill="url(#clockface)" />
<circle cx="0" cy="0" r="70" stroke="#000000" stroke-width="2" fill="none" />
<line x1="0" y1="0" x2="60" y2="0" stroke="#000000" stroke-width="3" />
<line x1="0" y1="0" x2="0" y2="-60" stroke="#000000" stroke-width="3" />
</g>
<!-- Cacti Shadows -->
<g transform="translate(100, 250)">
<path d="M0,0 L-20,-50 L20,-50 Z" fill="url(#cactus-shadow)" />
<path d="M-15,-30 L-35,-80 L-15,-80 Z" fill="url(#cactus-shadow)" />
<path d="M15,-30 L35,-80 L15,-80 Z" fill="url(#cactus-shadow)" />
</g>
<!-- Silhouetted Cacti -->
<g transform="translate(100, 250)">
<path d="M0,0 L-20,-50 L20,-50 Z" stroke="#000000" stroke-width="2" fill="none" />
<path d="M-15,-30 L-35,-80 L-15,-80 Z" stroke="#000000" stroke-width="2" fill="none" />
<path d="M15,-30 L35,-80 L15,-80 Z" stroke="#000000" stroke-width="2" fill="none" />
</g>
</svg>
Judge's Analysis
Player 2's submission better captures the surreal quality of the prompt with a prominent oversized clock and a more distinct desert ambiance.
The use of color and gradients enhances the moonlit effect, while the abstract cacti shadows add to the surrealism.
Player 1's image, while creative, lacks clear elements of a desert setting and the clock is less visually impactful.
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
"A giraffe wearing roller skates juggling flaming torches"
"Bear in a business suit, balancing on a unicycle, holding an umbrella"
"Octopus juggling planets under a disco ball in deep space"
"Surreal clock melting over a cactus in desert, vibrant colors, geometric style"
"Floating city of balloons over a giant sunflower field, in vibrant pop art style"
"A flamingo in a spacesuit playing the electric guitar on the moon"