Creative Challenge
"Flying fish playing chess on a floating lily pad"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="water" cx="150" cy="350" r="250" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#0077be"/>
<stop offset="50%" stop-color="#00aadd"/>
<stop offset="100%" stop-color="#22ccee"/>
</radialGradient>
<linearGradient id="lilypad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#008000"/>
<stop offset="50%" stop-color="#339933"/>
<stop offset="100%" stop-color="#55aa55"/>
</linearGradient>
<pattern id="chessboard" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#eee"/>
<rect x="10" y="10" width="10" height="10" fill="#eee"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#water)"/>
<ellipse cx="150" cy="200" rx="80" ry="60" fill="url(#lilypad)" stroke="#004400" stroke-width="2"/>
<rect x="90" y="140" width="120" height="120" fill="url(#chessboard)"/>
<g transform="translate(80, 120)">
<path d="M20,40c0,-10 15,-20 30,-10c15,10 30,30 10,40l-40,0z" fill="#f00" stroke="black" stroke-width="2">
<animateMotion dur="5s" repeatCount="indefinite" path="M0,0 c0,15 20,15 40,0 c20,-15 0,-15 -40,0 z"/>
</path>
<path d="M140,80c0,-10 15,-20 30,-10c15,10 30,30 10,40l-40,0z" fill="#00f" stroke="black" stroke-width="2">
<animateMotion dur="3s" repeatCount="indefinite" path="M0,0 c0,-15 -20,-15 -40,0 c-20,15 0,15 40,0 z"/>
</path>
</g>
<path d="M60,50c0,-10 15,-20 30,-10c15,10 30,30 10,40l-40,0z" fill="gold" transform="rotate(30, 70, 55)" stroke="black" stroke-width="2">
<animateMotion dur="4s" repeatCount="indefinite" path="M0,0 c50,0 25,50 0,50 c-25,0 -50,0 0,-50z"/>
</path>
<path d="M220,60c0,-10 15,-20 30,-10c15,10 30,30 10,40l-40,0z" fill="silver" transform="rotate(-20, 240, 55)" stroke="black" stroke-width="2">
<animateMotion dur="6s" repeatCount="indefinite" path="M0,0 c-30,0 -15,40 0,40 c15,0 30,0 0,-40z"/>
</path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky and Water -->
<rect x="0" y="0" width="300" height="150" fill="#87CEEB" rx="20" />
<rect x="0" y="150" width="300" height="150" fill="#032B44" rx="20" />
<!-- Lily Pad -->
<circle cx="150" cy="225" r="75" fill="#8BC34A" />
<circle cx="150" cy="225" r="70" fill="#C6EFCE" />
<circle cx="150" cy="225" r="65" fill="#8BC34A" />
<!-- Flying Fish -->
<g transform="translate(120 180)">
<path d="M 0 0 L 20 10 L 30 0 L 20 -10 Z" fill="#FFC107" />
<path d="M 20 10 L 30 0 L 20 -10 L 10 0 Z" fill="#FFA07A" />
<path d="M 10 0 L 20 -10 L 30 0 L 20 10 Z" fill="#FFC107" />
<circle cx="15" cy="0" r="5" fill="#FFFFFF" />
<circle cx="25" cy="0" r="5" fill="#FFFFFF" />
</g>
<!-- Chessboard -->
<rect x="100" y="190" width="100" height="100" fill="#A3A3A3" rx="10" />
<g transform="translate(105 195)">
<rect x="0" y="0" width="10" height="10" fill="#FFFFFF" />
<rect x="20" y="0" width="10" height="10" fill="#FFFFFF" />
<rect x="0" y="20" width="10" height="10" fill="#FFFFFF" />
<rect x="20" y="20" width="10" height="10" fill="#FFFFFF" />
<rect x="10" y="10" width="10" height="10" fill="#000000" />
</g>
<!-- Chess Pieces -->
<g transform="translate(105 195)">
<circle cx="5" cy="5" r="4" fill="#000000" />
<circle cx="25" cy="5" r="4" fill="#FFFFFF" />
<circle cx="5" cy="25" r="4" fill="#FFFFFF" />
<circle cx="25" cy="25" r="4" fill="#000000" />
</g>
<!-- Water Ripples -->
<circle cx="150" cy="225" r="10" fill="#032B44" opacity="0.5" />
<circle cx="150" cy="225" r="20" fill="#032B44" opacity="0.3" />
<circle cx="150" cy="225" r="30" fill="#032B44" opacity="0.1" />
<!-- Shadows -->
<circle cx="150" cy="245" r="70" fill="#000000" opacity="0.2" />
<g transform="translate(120 180)">
<path d="M 0 0 L 20 10 L 30 0 L 20 -10 Z" fill="#000000" opacity="0.2" />
<path d="M 20 10 L 30 0 L 20 -10 L 10 0 Z" fill="#000000" opacity="0.2" />
<path d="M 10 0 L 20 -10 L 30 0 L 20 10 Z" fill="#000000" opacity="0.2" />
</g>
</svg>
Judge's Analysis
Player 2's image creatively interprets the prompt with a clear depiction of a chessboard on a lily pad set against a contrasting background, enhancing visual appeal.
The technical quality is high, with clean lines and effective use of color.
Player 1's image, while colorful, lacks clarity and coherence in representing the concept of fish playing chess.
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
"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"
"Flying fish surfing on rainbow waves"
"A cactus wearing a bow tie and monocle, sipping tea in the desert"