Creative Challenge
"Surrealist flying fish with mechanical wings over a neon cityscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Neon cityscape background -->
<rect x="0" y="0" width="300" height="300" fill="#000" />
<rect x="50" y="150" width="30" height="150" fill="#0f0" />
<rect x="100" y="100" width="30" height="200" fill="#ff0" />
<rect x="150" y="120" width="30" height="180" fill="#0ff" />
<rect x="200" y="90" width="30" height="210" fill="#f0f" />
<!-- Surrealist flying fish with mechanical wings -->
<path id="fishBody" d="M150 130 Q180 50 210 130 Q240 210 150 230 Q60 210 90 130 Q120 50 150 130" fill="#f00" />
<path d="M210 130 Q220 70 230 130" fill="none" stroke="#000" stroke-width="3" />
<circle cx="150" cy="130" r="3" fill="#fff" />
<path d="M200 130 Q190 110 180 130" fill="none" stroke="#000" stroke-width="2" />
<path d="M160 130 Q150 110 140 130" fill="none" stroke="#000" stroke-width="2" />
<path d="M172 160 Q190 150 208 160" fill="none" stroke="#000" stroke-width="3" />
<path d="M210 130 Q190 160 170 130" fill="none" stroke="#000" stroke-width="3" />
<!-- Mechanical wings -->
<rect x="130" y="70" width="40" height="20" fill="#ccc" />
<rect x="150" y="70" width="5" height="90" fill="#888" />
<rect x="120" y="60" width="60" height="10" fill="#888" />
<rect x="70" y="50" width="80" height="140" fill="#999" />
<rect x="25" y="45" width="40" height="150" fill="#bbb" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop stop-color="#0a0a2e" offset="0"/>
<stop stop-color="#1a1a4f" offset="1"/>
</linearGradient>
<linearGradient id="waterGrad" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop stop-color="#0a4e8e" offset="0"/>
<stop stop-color="#1a8cd8" offset="1"/>
</linearGradient>
<linearGradient id="fishGrad" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffd700" offset="0"/>
<stop stop-color="#ff8c00" offset="1"/>
</linearGradient>
<linearGradient id="cityLights" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
<stop stop-color="#00ff00" offset="0"/>
<stop stop-color="#8000ff" offset="1"/>
</linearGradient>
</defs>
<!-- Water surface with ripple effect -->
<rect x="0" y="200" width="300" height="100" fill="url(#waterGrad)"/>
<path d="M0,200 L300,200 M0,220 L300,220 M0,240 L300,240" stroke="#fff" stroke-width="2" stroke-dasharray="10,10"/>
<!-- Cityscape -->
<rect x="20" y="100" width="260" height="180" fill="#1a1a1a"/>
<g clip-path="url(#clip)">
<rect x="40" y="120" width="220" height="160" fill="url(#cityLights)"/>
<rect x="60" y="140" width="200" height="120" fill="url(#cityLights)"/>
<rect x="80" y="160" width="180" height="80" fill="url(#cityLights)"/>
</g>
<!-- Flying fish -->
<g transform="translate(150,150)">
<ellipse cx="0" cy="0" rx="30" ry="15" fill="url(#fishGrad)"/>
<path d="M-40,-20 L40,20 L0,40 Z" fill="url(#fishGrad)"/>
<path d="M-20,-30 L20,30 L0,20 Z" fill="#fff"/>
<path d="M-10,-25 L10,25 L0,15 Z" fill="#fff"/>
<path d="M-5,-20 L5,20 L0,10 Z" fill="#fff"/>
</g>
<!-- Background elements -->
<circle cx="150" cy="150" r="100" fill="url(#skyGrad)"/>
<path d="M150,0 L300,300 L0,300 Z" fill="#1a1a1a"/>
</svg>
Judge's Analysis
Player 1's submission more closely adheres to the prompt by incorporating vibrant neon colors and a whimsical interpretation of mechanical wings, which aligns well with the surrealist theme.
The composition successfully captures the essence of a neon cityscape, enhancing the visual appeal and creativity.
Player 2's image lacks clear elements of a fish or mechanical wings, making it less relevant 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
"Flying fish playing chess on floating lily pads"
"Clock tower made of melting candles"
"Agrarian moon, cows grazing in zero gravity fields"
"Melting clock dripping over a crescent moon"
"Octopus reading a newspaper at sunrise"
"Melting clock with butterfly wings on a desert cactus"