Creative Challenge
"Two-legged cat juggling four colorful fish under a rainbow arch"
<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%" style="stop-color: #FF0000" />
<stop offset="20%" style="stop-color: #FF7F00" />
<stop offset="40%" style="stop-color: #FFFF00" />
<stop offset="60%" style="stop-color: #00FF00" />
<stop offset="80%" style="stop-color: #0000FF" />
<stop offset="100%" style="stop-color: #8B00FF" />
</linearGradient>
<pattern id="fishScale" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="4" fill="rgba(255,255,255,0.2)" />
</pattern>
</defs>
<!-- Rainbow arc -->
<path d="M20 200 Q150 -50 280 200" fill="none" stroke="url(#rainbowGradient)" stroke-width="15"/>
<!-- Two-legged cat -->
<g transform="translate(120, 180)">
<ellipse cx="30" cy="50" rx="15" ry="30" fill="#FFD700"/>
<ellipse cx="70" cy="50" rx="15" ry="30" fill="#FFD700"/>
<circle cx="50" cy="30" r="20" fill="#FFD700"/>
<circle cx="43" cy="28" r="2" fill="#000"/>
<circle cx="57" cy="28" r="2" fill="#000"/>
<path d="M45 38 Q50 43 55 38" stroke="#000" stroke-width="1" fill="none"/>
<line x1="50" y1="0" x2="50" y2="30" stroke="#FFD700" stroke-width="15"/>
<ellipse cx="50" cy="0" rx="10" ry="15" fill="#FFD700"/>
</g>
<!-- Juggling fish -->
<g transform="translate(50, 70)">
<circle cx="30" cy="0" r="12" fill="red" />
<ellipse cx="22" cy="0" rx="8" ry="5" fill="red" fill-opacity="0.8"/>
<polygon points="1,0 -8,-6 -8,6" fill="darkred"/>
<circle cx="50" cy="50" r="12" fill="green" />
<ellipse cx="42" cy="50" rx="8" ry="5" fill="green" fill-opacity="0.8"/>
<polygon points="21,50 12,44 12,56" fill="darkgreen"/>
<circle cx="70" cy="100" r="12" fill="blue" />
<ellipse cx="62" cy="100" rx="8" ry="5" fill="blue" fill-opacity="0.8"/>
<polygon points="41,100 32,94 32,106" fill="darkblue"/>
<circle cx="100" cy="25" r="12" fill="purple" />
<ellipse cx="92" cy="25" rx="8" ry="5" fill="purple" fill-opacity="0.8"/>
<polygon points="71,25 62,19 62,31" fill="indigo"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Rainbow Arch -->
<path d="M 50 150 C 75 100 125 100 150 150 S 225 200 250 150"
stroke="none" fill="none">
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000" />
<stop offset="20%" stop-color="#ffa500" />
<stop offset="40%" stop-color="#ffff00" />
<stop offset="60%" stop-color="#008000" />
<stop offset="80%" stop-color="#0000ff" />
<stop offset="100%" stop-color="#800080" />
</linearGradient>
<rect x="50" y="100" width="200" height="50" fill="url(#rainbow)" />
</path>
<!-- Two-legged Cat -->
<g transform="translate(125 175)">
<circle cx="0" cy="0" r="25" fill="#808080" />
<path d="M -20 -20 L -20 20 L 20 20 L 20 -20 Z"
stroke="none" fill="#808080" />
<path d="M -15 -15 L -15 15" stroke="#000000" stroke-width="3" />
<path d="M 15 -15 L 15 15" stroke="#000000" stroke-width="3" />
<circle cx="-15" cy="25" r="10" fill="#000000" />
<circle cx="15" cy="25" r="10" fill="#000000" />
</g>
<!-- Four Colorful Fish -->
<g transform="translate(75 225)">
<g transform="rotate(45)">
<path d="M 0 0 L 20 10 L 20 -10 Z"
stroke="none" fill="#ff0000" />
<circle cx="15" cy="0" r="5" fill="#ffffff" />
</g>
</g>
<g transform="translate(125 200)">
<g transform="rotate(135)">
<path d="M 0 0 L 20 10 L 20 -10 Z"
stroke="none" fill="#00ff00" />
<circle cx="15" cy="0" r="5" fill="#ffffff" />
</g>
</g>
<g transform="translate(175 225)">
<g transform="rotate(-45)">
<path d="M 0 0 L 20 10 L 20 -10 Z"
stroke="none" fill="#0000ff" />
<circle cx="15" cy="0" r="5" fill="#ffffff" />
</g>
</g>
<g transform="translate(125 250)">
<g transform="rotate(-135)">
<path d="M 0 0 L 20 10 L 20 -10 Z"
stroke="none" fill="#ffff00" />
<circle cx="15" cy="0" r="5" fill="#ffffff" />
</g>
</g>
<!-- Juggling Balls -->
<circle cx="125" cy="175" r="5" fill="#000000" />
<circle cx="75" cy="225" r="5" fill="#000000" />
<circle cx="175" cy="225" r="5" fill="#000000" />
<circle cx="125" cy="250" r="5" fill="#000000" />
</svg>
Judge's Analysis
Player 1's image more closely adheres to the prompt with a visible rainbow and four colorful fish clearly being juggled by a two-legged figure resembling a cat.
The use of bright colors and the inclusion of a full rainbow arch enhance the visual appeal and creativity of the design.
Player 2's submission lacks a visible rainbow and is less clear in depicting the juggling action.
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
"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"
"Uneven chessboard floating above a serene koi pond"
"Singing ice cream cone on a stage with spotlights"
"Accordion-playing octopus serenades a starry seahorse"