Creative Challenge
"A whale floating in a starry night sky, wearing a cityscape as a hat"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient definitions -->
<defs>
<linearGradient id="starryNight" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#2E4053" />
<stop offset="50%" stop-color="#3498DB" />
<stop offset="100%" stop-color="#2E4053" />
</linearGradient>
<linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#455A64" />
<stop offset="50%" stop-color="#788C8C" />
<stop offset="100%" stop-color="#455A64" />
</linearGradient>
<linearGradient id="cityLights" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#F7DC6F" />
<stop offset="50%" stop-color="#FFC107" />
<stop offset="100%" stop-color="#F7DC6F" />
</linearGradient>
</defs>
<!-- Starry night sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#starryNight)" />
<g>
<circle cx="50" cy="50" r="2" fill="#FFFFFF" />
<circle cx="100" cy="100" r="2" fill="#FFFFFF" />
<circle cx="150" cy="150" r="2" fill="#FFFFFF" />
<circle cx="200" cy="200" r="2" fill="#FFFFFF" />
<circle cx="250" cy="250" r="2" fill="#FFFFFF" />
</g>
<!-- Whale -->
<path d="M150 150C150 200 100 200 100 150S150 100 150 150" fill="url(#whaleGradient)" stroke="#455A64" stroke-width="2" />
<ellipse cx="150" cy="150" rx="30" ry="20" fill="#455A64" />
<circle cx="170" cy="130" r="10" fill="#455A64" />
<circle cx="130" cy="130" r="10" fill="#455A64" />
<!-- Cityscape hat -->
<path d="M150 50L120 100L180 100L150 50" fill="url(#cityLights)" stroke="#333333" stroke-width="2" />
<rect x="120" y="80" width="10" height="20" fill="#333333" />
<rect x="140" y="80" width="10" height="20" fill="#333333" />
<rect x="160" y="80" width="10" height="20" fill="#333333" />
<rect x="180" y="80" width="10" height="20" fill="#333333" />
<path d="M120 100L100 120L120 140L140 120L120 100" fill="#333333" />
<path d="M180 100L200 120L180 140L160 120L180 100" fill="#333333" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffffff;stop-opacity:0" />
</radialGradient>
<pattern id="cityPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#333"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#123456"/>
<g transform="translate(100,200)">
<path d="M0,0 Q40,-20 80,0 Q120,20 160,0 Q200,-20 240,0" fill="#2B4D67" stroke="#1A3455" stroke-width="2"/>
<circle cx="80" cy="-10" r="15" fill="#fff">
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite" begin="0"/>
</circle>
<circle cx="160" cy="-10" r="15" fill="#fff">
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite" begin="1"/>
</circle>
</g>
<g transform="translate(120,180)">
<rect width="60" height="40" fill="#333"/>
<rect x="20" y="0" width="20" height="60" fill="#444"/>
<rect x="40" y="-20" width="10" height="80" fill="#555"/>
<rect x="60" y="-40" width="10" height="100" fill="#666"/>
</g>
<g transform="translate(0,0)">
<circle cx="50" cy="50" r="20" fill="url(#starGlow)"/>
<circle cx="250" cy="150" r="15" fill="url(#starGlow)"/>
<circle cx="100" cy="250" r="10" fill="url(#starGlow)"/>
<circle cx="200" cy="100" r="12" fill="url(#starGlow)"/>
<circle cx="150" cy="200" r="8" fill="url(#starGlow)"/>
</g>
<path d="M140,180 Q160,160 180,180" fill="#444" opacity="0.8"/>
<g transform="translate(100,50)">
<rect width="100" height="100" fill="url(#cityPattern)"/>
</g>
<circle cx="250" cy="30" r="40" fill="#897AEF" opacity="0.2"/>
<path d="M250,30 Q270,0 290,30" fill="#897AEF" opacity="0.2"/>
</svg>
Judge's Analysis
Player 1's image creatively represents the whale with a clear cityscape hat, using distinct geometric shapes that convey the concept effectively.
The color palette and composition provide a clear depiction of a starry night sky.
Player 2's image is more abstract and lacks clarity in depicting the whale and cityscape, making it less adherent 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
"An astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"