Creative Challenge
"A turtle wearing a top hat, riding a unicycle on a rainbow"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="50%" x2="100%" y2="50%">
<stop offset="0%" style="stop-color:#FF0000;stop-opacity:1"/>
<stop offset="17%" style="stop-color:#FF7F00"/>
<stop offset="34%" style="stop-color:#FFFF00"/>
<stop offset="51%" style="stop-color:#00FF00"/>
<stop offset="68%" style="stop-color:#0000FF"/>
<stop offset="85%" style="stop-color:#4B0082"/>
<stop offset="100%" style="stop-color:#8F00FF"/>
</linearGradient>
<radialGradient id="shell" cx="35%" cy="35%" r="65%">
<stop offset="0%" style="stop-color:#228B22"/>
<stop offset="100%" style="stop-color:#006400"/>
</radialGradient>
<filter id="shadow">
<feDropShadow dx="2" dy="4" stdDeviation="3"/>
</filter>
</defs>
<!-- Rainbow path -->
<path d="M-50 250 Q150 50 350 250" fill="none" stroke="url(#rainbow)" stroke-width="25" stroke-linecap="round"/>
<!-- Unicycle -->
<g transform="translate(150 190)">
<!-- Wheel -->
<circle r="40" fill="#555" stroke="#333" stroke-width="3"/>
<circle r="35" fill="url(#metal)">
<animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="4s" repeatCount="indefinite"/>
</circle>
<!-- Frame -->
<path d="M0 -40 l0 60" stroke="#654321" stroke-width="8" stroke-linecap="round"/>
<!-- Seat -->
<rect x="-10" y="-55" width="20" height="15" rx="5" fill="#8B4513"/>
</g>
<!-- Turtle -->
<g transform="translate(150 160)">
<!-- Shell -->
<ellipse cx="0" cy="0" rx="45" ry="35" fill="url(#shell)" filter="url(#shadow)"/>
<!-- Body -->
<ellipse cx="0" cy="25" rx="30" ry="20" fill="#32CD32"/>
<!-- Head -->
<circle cx="0" cy="-15" r="12" fill="#32CD32"/>
<!-- Eyes -->
<circle cx="-5" cy="-20" r="3" fill="#000"/>
<circle cx="5" cy="-20" r="3" fill="#000"/>
<!-- Legs -->
<path d="M-25 20 Q-35 30 -25 40" stroke="#32CD32" stroke-width="8"/>
<path d="M25 20 Q35 30 25 40" stroke="#32CD32" stroke-width="8"/>
<!-- Tail -->
<path d="M0 40 Q10 50 0 60" stroke="#006400" stroke-width="6"/>
<!-- Top Hat -->
<rect x="-15" y="-35" width="30" height="25" fill="#000"/>
<rect x="-20" y="-35" width="40" height="5" fill="#B22222"/>
<rect x="-10" y="-55" width="20" height="20" fill="#000"/>
</g>
<!-- Sparkles -->
<g fill="#FFD700" opacity="0.8">
<circle cx="80" cy="90" r="2"/>
<circle cx="220" cy="120" r="3"/>
<circle cx="160" cy="70" r="2.5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(150,150)">
<!-- Rainbow -->
<g transform="translate(0,-100)">
<circle r="40" fill="none" stroke="#FF0000" stroke-width="3"/>
<circle r="45" fill="none" stroke="#FFD700" stroke-width="3"/>
<circle r="50" fill="none" stroke="#00FF00" stroke-width="3"/>
<circle r="55" fill="none" stroke="#0000FF" stroke-width="3"/>
<circle r="60" fill="none" stroke="#800080" stroke-width="3"/>
</g>
<!-- Unicycle -->
<g transform="translate(0,50)">
<circle cx="0" cy="0" r="20" fill="#FFD700"/>
<rect x="-5" y="-10" width="10" height="40" fill="#666" transform="rotate(90)"/>
</g>
<!-- Turtle -->
<g transform="translate(-30,30)">
<rect rx="20" width="60" height="40" fill="url(#turtleGrad)"/>
<rect rx="10" x="10" y="-10" width="40" height="30" fill="#666"/>
<rect x="-20" y="40" width="80" height="10" fill="#666"/>
<rect x="-10" y="35" width="20" height="15" fill="#666"/>
<rect x="10" y="35" width="20" height="15" fill="#666"/>
<rect rx="5" x="-15" y="-15" width="30" height="30" fill="#666"/>
</g>
<!-- Top Hat -->
<g transform="translate(-15,-20)">
<rect rx="10" width="30" height="40" fill="#000"/>
<rect rx="5" x="5" y="35" width="20" height="10" fill="#FF0000"/>
</g>
<!-- Stars -->
<g opacity="0.5">
<circle cx="-40" cy="-30" r="2" fill="#FFF"/>
<circle cx="30" cy="-40" r="3" fill="#FFF"/>
<circle cx="-20" cy="20" r="2" fill="#FFF"/>
<circle cx="20" cy="-20" r="2" fill="#FFF"/>
</g>
<defs>
<linearGradient id="turtleGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#228B22;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#006400;stop-opacity:1"/>
</linearGradient>
</defs>
</g>
</svg>
Judge's Analysis
Player 1's image more closely adheres to the prompt, clearly depicting a turtle wearing a top hat and riding a unicycle on a rainbow.
The use of color and composition effectively conveys the whimsical theme.
Player 2's image is less clear in its representation and lacks the cohesion of the first image, making Player 1's submission stronger in visual appeal and adherence 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 Riding Bicycles Over a Cityscape"
"A regal penguin in a tux, sipping tea on a floating iceberg"
"Floating city above a giant sleeping cat, geometric style"
"A flying fish wearing aviator goggles soaring over a surreal desert landscape"
"Frog conducting an orchestra of floating mushrooms under a crescent moon"