Creative Challenge
"Floating city on the back of a sleeping whale"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#B0E0E6;stop-opacity:1" />
</linearGradient>
<radialGradient id="whaleGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#4682B4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2F4F4F;stop-opacity:1" />
</radialGradient>
<linearGradient id="cityGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1" />
</linearGradient>
<pattern id="cloudPattern" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="8" fill="#FFFFFF" opacity="0.7"/>
<circle cx="5" cy="10" r="6" fill="#FFFFFF" opacity="0.9"/>
<circle cx="15" cy="10" r="6" fill="#FFFFFF" opacity="0.9"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<path d="M50 220 Q150 180 250 220 Q230 240 50 240 Z" fill="url(#whaleGradient)" />
<rect x="120" y="70" width="60" height="100" fill="url(#cityGradient)" />
<polygon points="120,70 100,50 140,50" fill="url(#cityGradient)" />
<rect x="140" y="40" width="20" height="30" fill="url(#cityGradient)" />
<rect x="155" y="75" width="10" height="30" fill="brown" />
<rect x="185" y="70" width="40" height="90" fill="url(#cityGradient)" />
<polygon points="185,70 170,50 225,50" fill="url(#cityGradient)" />
<rect x="225" y="40" width="20" height="30" fill="url(#cityGradient)" />
<polygon points="180,140 200,120 220,140 200,160" fill="orange" />
<polygon points="220,140 240,130 260,140 240,150" fill="orangered" />
<circle cx="100" cy="50" r="5" fill="#FF6347" />
<circle cx="250" cy="50" r="5" fill="#FF6347" />
<path d="M50 200 C70 190, 80 230, 100 210 C120 190, 180 190, 200 210 C220 230, 230 190, 250 200" fill="url(#cloudPattern)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="sky" cx="150" cy="300" r="300" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#a6e0f2" />
<stop offset="1" stop-color="#243b6a" />
</radialGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
<path id="whale" d="M20,180c20,-20 80,-40 140,-30c60,10 100,50 80,70c-20,20 -100,-20 -80,-40c20,-20 0,-30 -40,-10c-40,20 -60,70 -20,70z" fill="#35598c" />
<ellipse cx="120" cy="160" rx="15" ry="10" fill="#f2f2f2" />
<filter id="wave">
<feTurbulence baseFrequency=".02" type="fractalNoise" numOctaves="3" result="noise" />
<feDisplacementMap in="SourceGraphic" in2="noise" scale="10" xChannelSelector="R" yChannelSelector="G" result="displaced" />
</filter>
<path d="M20,190c20,5 80,0 140,10c60,10 100,10 80,0c-20,-10 -100,10 -80,5c20,-5 0,-5 -40,0c-40,5 -60,10 -20,5z" fill="#4873aa" filter="url(#wave)" opacity=".5"/>
<g id="city">
<path d="M55,110l10,-30 20,10 15,-20 10,20z" fill="#f0b040"/>
<path d="M90,85l20,0 0,-30 -20,0z" fill="#d36c42" />
<circle cx="80" cy="90" r="10" fill="#ffda6f"/>
<polygon points="125,90 150,60 140,50 115,80" fill="#a1c982" />
<rect x="140" y="60" width="15" height="30" fill="#98b573" />
<rect x="115" y="80" width="10" height="10" fill="#e0904f" />
<path d="M160,70l20,-20 10,30 -20,0z" fill="#68a98b" />
<ellipse cx="170" cy="85" rx="8" ry="12" fill="#e6d290" />
</g>
<animateTransform xlink:href="#city" attributeName="transform" type="translate" values="0,0; 0,-5; 0,0" dur="5s" repeatCount="indefinite"/>
</svg>
Judge's Analysis
Player 1's submission captures the whimsical concept of a floating city on a whale with a clear depiction of both elements.
The use of geometric shapes for the city and the stylized whale adds a creative and abstract touch.
Player 2's image failed to load, preventing any assessment of its content or quality.
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 robotic flamingos waltzing on a moonlit pond"
"An octopus knitting a colorful scarf with pirate ship sails"
"Floating teacup island with a waterfall of stars"
"Cartoon comet playing chess with a star in space"
"Galactic snail surfing on a rainbow wave"
"Tiny astronaut surfing on a giant slice of watermelon through space"