Creative Challenge
"Flying fish surfing on rainbow waves"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red"/>
<stop offset="14%" stop-color="orange"/>
<stop offset="28%" stop-color="yellow"/>
<stop offset="42%" stop-color="green"/>
<stop offset="56%" stop-color="blue"/>
<stop offset="70%" stop-color="indigo"/>
<stop offset="84%" stop-color="violet"/>
<stop offset="100%" stop-color="red"/>
</linearGradient>
<pattern id="fishScales" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="lightblue" stroke="steelblue" stroke-width="0.5"/>
</pattern>
</defs>
<path d="M10 250 C 50 200, 100 150, 150 180 C 200 210, 250 180, 300 220" fill="url(#rainbowGradient)" stroke="none">
<animateTransform attributeName="transform" type="translate" values="0,0; 0,-10; 0,0" dur="3s" repeatCount="indefinite"/>
</path>
<path d="M20 230 C 70 180, 120 130, 170 160 C 220 190, 270 160, 320 190" fill="url(#rainbowGradient)" stroke="none" opacity="0.8">
<animateTransform attributeName="transform" type="translate" values="0,0; 0,-15; 0,0" dur="4s" repeatCount="indefinite"/>
</path>
<g transform="translate(50, 100) rotate(-15)">
<path d="M0 0 C 20 20, 40 -20, 60 0 L 60 20 L 0 20 Z" fill="url(#fishScales)" stroke="steelblue"/>
<polygon points="60,10 80,0 80,20" fill="lightcoral"/>
<circle cx="20" cy="15" r="3" fill="white"/>
<circle cx="22" cy="15" r="2" fill="black"/>
<animateMotion dur="5s" repeatCount="indefinite" path="M0 0 C 50 -50, 100 50, 150 0"/>
</g>
<g transform="translate(150, 70) scale(0.8) rotate(10)">
<path d="M0 0 C 20 20, 40 -20, 60 0 L 60 20 L 0 20 Z" fill="url(#fishScales)" stroke="steelblue"/>
<polygon points="60,10 80,0 80,20" fill="gold"/>
<circle cx="20" cy="15" r="3" fill="white"/>
<circle cx="22" cy="15" r="2" fill="black"/>
<animateMotion dur="4s" repeatCount="indefinite" path="M0 0 C 50 50, 100 -50, 150 0"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Rainbow Waves -->
<linearGradient id="rainbow" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#FF69B4" />
<stop offset="0.2" stop-color="#FFC0CB" />
<stop offset="0.4" stop-color="#FFFF00" />
<stop offset="0.6" stop-color="#00BFFF" />
<stop offset="0.8" stop-color="#4B0082" />
<stop offset="1" stop-color="#8F00FF" />
</linearGradient>
<rect x="0" y="100" width="300" height="100" fill="url(#rainbow)" rx="20" />
<rect x="0" y="150" width="300" height="50" fill="url(#rainbow)" rx="10" />
<rect x="0" y="180" width="300" height="20" fill="url(#rainbow)" rx="5" />
<!-- Flying Fish -->
<symbol id="fish">
<path d="M 20 10 L 30 20 L 40 10 L 30 0 Z" fill="#FFFFFF" />
<path d="M 30 20 L 35 25 L 40 20 L 35 15 Z" fill="#FFFFFF" />
<circle cx="30" cy="20" r="5" fill="#FFFFFF" />
<circle cx="35" cy="25" r="2" fill="#000000" />
<circle cx="35" cy="15" r="2" fill="#000000" />
</symbol>
<!-- Flying Fish Instances -->
<use xlink:href="#fish" x="50" y="120" transform="rotate(10)" />
<use xlink:href="#fish" x="100" y="140" transform="rotate(-10)" />
<use xlink:href="#fish" x="150" y="160" transform="rotate(10)" />
<use xlink:href="#fish" x="200" y="180" transform="rotate(-10)" />
<use xlink:href="#fish" x="250" y="140" transform="rotate(10)" />
<!-- Sun -->
<circle cx="150" cy="50" r="20" fill="#F2C464" />
<circle cx="150" cy="50" r="10" fill="#FFFFFF" />
<circle cx="150" cy="50" r="5" fill="#F2C464" />
<!-- Sea Foam -->
<symbol id="foam">
<circle cx="0" cy="0" r="5" fill="#FFFFFF" />
</symbol>
<use xlink:href="#foam" x="50" y="190" />
<use xlink:href="#foam" x="100" y="170" />
<use xlink:href="#foam" x="150" y="190" />
<use xlink:href="#foam" x="200" y="170" />
<use xlink:href="#foam" x="250" y="190" />
</svg>
Judge's Analysis
Player 1's image effectively captures the concept of 'flying fish surfing on rainbow waves' with clear depictions of fish and a vibrant rainbow wave.
The technical execution is solid, and the image has a whimsical, visually appealing quality.
Player 2's submission was not viewable, so Player 1 is the default winner.
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 a floating lily pad"
"Ceiling fan made of rainbow-colored leaves spinning"
"Squirrel in a space helmet floating among stars"
"Snowman DJ mixing beats under a neon aurora"
"A cat in a wizard hat, casting a spell on a ghostly fish"
"A cactus wearing a bow tie and monocle, sipping tea in the desert"