Creative Challenge
"Uneven chessboard floating above a serene koi pond"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Pond background with gradient -->
<rect x="0" y="150" width="300" height="150" fill="#87ceeb" rx="20" />
<linearGradient id="gradPond" x1="0" y1="150" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#81b3eb" />
<stop offset="1" stop-color="#4682b4" />
</linearGradient>
<rect x="0" y="150" width="300" height="150" fill="url(#gradPond)" rx="20" />
<!-- Koi fish with scales and fins -->
<circle cx="80" cy="220" r="15" fill="#ffd700" />
<circle cx="90" cy="240" r="10" fill="#ffd700" />
<circle cx="100" cy="260" r="5" fill="#ffd700" />
<path d="M 80 230 L 100 250 L 110 230 Z" fill="#ffd700" />
<path d="M 90 240 L 110 260 L 120 240 Z" fill="#ffd700" />
<path d="M 100 250 L 120 270 L 130 250 Z" fill="#ffd700" />
<circle cx="150" cy="200" r="20" fill="#e9967a" />
<path d="M 140 210 L 160 230 L 170 210 Z" fill="#e9967a" />
<path d="M 150 220 L 170 240 L 180 220 Z" fill="#e9967a" />
<!-- Chessboard with uneven squares -->
<rect x="50" y="50" width="60" height="60" fill="#964b00" rx="5" transform="skewX(-10)" />
<rect x="110" y="55" width="50" height="60" fill="#f5f5dc" rx="5" transform="skewX(10)" />
<rect x="160" y="45" width="60" height="50" fill="#964b00" rx="5" transform="skewX(-5)" />
<rect x="70" y="120" width="50" height="60" fill="#f5f5dc" rx="5" transform="skewX(5)" />
<rect x="130" y="125" width="60" height="60" fill="#964b00" rx="5" transform="skewX(-10)" />
<rect x="190" y="105" width="50" height="50" fill="#f5f5dc" rx="5" transform="skewX(10)" />
<!-- Water ripples and sunlight effects -->
<circle cx="120" cy="180" r="10" fill="#add8e6" opacity="0.5" />
<circle cx="160" cy="210" r="20" fill="#add8e6" opacity="0.5" />
<path d="M 100 150 L 150 190 L 120 220 Z" fill="#add8e6" opacity="0.5" />
<path d="M 180 170 L 200 200 L 220 180 Z" fill="#add8e6" opacity="0.5" />
<radialGradient id="gradSun" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0" stop-color="#f2f2f2" />
<stop offset="1" stop-color="#fff" />
</radialGradient>
<circle cx="220" cy="120" r="30" fill="url(#gradSun)" opacity="0.8" />
<circle cx="150" cy="80" r="20" fill="url(#gradSun)" opacity="0.8" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background gradient -->
<defs>
<linearGradient id="pondGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:#89CFF0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0F52BA;stop-opacity:1" />
</linearGradient>
<pattern id="checkerPattern" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#fff" />
<rect x="10" y="10" width="10" height="10" fill="#fff" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#pondGradient)" />
<!-- Koi Pond -->
<ellipse cx="150" cy="250" rx="140" ry="40" fill="#ffffffaa" />
<!-- Koi Fish -->
<path d="M120,230 Q110,220 100,230 T80,230 Q75,240 85,250 T100,250 Q110,240 120,250 T140,250 Q145,240 135,230 T120,230" fill="#ffcc00" stroke="#ff6600" stroke-width="2" />
<circle cx="110" cy="240" r="4" fill="#000" />
<path d="M190,260 Q200,270 210,260 T230,260 Q235,250 225,240 T210,240 Q200,250 190,240 T170,240 Q165,250 175,260 T190,260" fill="#ffcc00" stroke="#ff6600" stroke-width="2" />
<circle cx="200" cy="250" r="4" fill="#000" />
<!-- Floating Uneven Chessboard -->
<g transform="translate(50, 50) rotate(-10)">
<rect width="200" height="200" fill="url(#checkerPattern)" />
<!-- Warping effect -->
<path d="M0,0 Q20,5 40,0 Q70,-5 100,0 Q130,5 160,0 Q180,-5 200,0
L200,200 Q180,205 160,200 Q130,195 100,200 Q70,205 40,200 Q20,195 0,200 Z" fill="none" stroke="#000" stroke-width="2" />
</g>
</svg>
Judge's Analysis
Player 2's image effectively captures the idea of an uneven chessboard with a clear visual of a checkered pattern that appears to float above a serene koi pond.
The inclusion of koi elements adds to the theme and enhances the visual appeal.
Player 1's image lacks clarity in depicting a chessboard and appears more abstract, which detracts from the prompt adherence and overall appeal.
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-legged cat juggling four colorful fish under a rainbow arch"
"Floating castle tangled in glowing balloon strings"
"Giraffe wearing a tuxedo, holding an umbrella on a moonlit beach"
"Robot dinosaur juggling planets in a circus"
"Singing ice cream cone on a stage with spotlights"
"Accordion-playing octopus serenades a starry seahorse"