Creative Challenge
"Surfing cat on a rainbow wave"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="waveGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff7e00;stop-opacity:1" />
<stop offset="25%" style="stop-color:#ff0080;stop-opacity:1" />
<stop offset="50%" style="stop-color:#9b00ff;stop-opacity:1" />
<stop offset="75%" style="stop-color:#0077ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00ff7f;stop-opacity:1" />
</linearGradient>
<radialGradient id="catGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#fff9c4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc80;stop-opacity:1" />
</radialGradient>
</defs>
<g transform="translate(0, 150)">
<path d="M0,0 Q150,-100 300,0 Q150,100 0,0" fill="url(#waveGradient)"/>
<ellipse cx="150" cy="-5" rx="90" ry="20" fill="url(#waveGradient)" opacity="0.5"/>
</g>
<g>
<path d="M110 100 Q 130 70, 150 100 Q 170 130, 190 100 Q 210 70, 230 100" fill="none" stroke="#000" stroke-width="4" />
<ellipse cx="150" cy="120" rx="15" ry="10" fill="url(#catGradient)" />
<circle cx="145" cy="115" r="3" fill="#000" />
<circle cx="155" cy="115" r="3" fill="#000" />
<path d="M140 125 Q 150 130, 160 125" stroke="#000" stroke-width="1.5" fill="none" />
<path d="M120 110 Q 115 95, 130 105" stroke="#000" stroke-width="1.5" fill="none" />
<path d="M180 110 Q 185 95, 170 105" stroke="#000" stroke-width="1.5" fill="none" />
<polygon points="130,150 170,150 160,165 140,165" fill="#000" />
<path d="M145 165 Q 150 170, 155 165" stroke="#000" stroke-width="1" fill="none" />
</g>
<g>
<circle cx="150" cy="0" r="10" fill="#fff" />
<circle cx="145" cy="0" r="3" fill="#ff0000" />
<circle cx="155" cy="0" r="3" fill="#ff0000" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<defs>
<radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.8">
<stop offset="0%" stop-color="#a6e3f5"/>
<stop offset="100%" stop-color="#0f6dbf"/>
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Rainbow Wave -->
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="20%" stop-color="#FF7F00"/>
<stop offset="40%" stop-color="#FFFF00"/>
<stop offset="60%" stop-color="#00FF00"/>
<stop offset="80%" stop-color="#0000FF"/>
<stop offset="100%" stop-color="#8B00FF"/>
</linearGradient>
</defs>
<path d="M0,200 Q150,50 300,200 T600,200" fill="none" stroke="url(#rainbowGradient)" stroke-width="40"/>
<!-- Surfing Cat -->
<g transform="translate(120, 160)">
<!-- Surfboard -->
<ellipse rx="30" ry="10" fill="#774D2A" stroke="#5E3A1E" stroke-width="2"/>
<!-- Cat Body -->
<ellipse cx="0" cy="-20" rx="15" ry="20" fill="#FFCC99" stroke="#DDAA77" stroke-width="2"/>
<!-- Cat Head -->
<circle cx="0" cy="-40" r="12" fill="#FFCC99" stroke="#DDAA77" stroke-width="2"/>
<!-- Cat Ears -->
<path d="M-8,-50 Q-5,-60 0,-50" fill="#FFCC99" stroke="#DDAA77" stroke-width="2"/>
<path d="M8,-50 Q5,-60 0,-50" fill="#FFCC99" stroke="#DDAA77" stroke-width="2"/>
<!-- Cat Face -->
<circle cx="-4" cy="-44" r="1" fill="#333"/>
<circle cx="4" cy="-44" r="1" fill="#333"/>
<path d="M-4,-42 Q0,-39 4,-42" fill="none" stroke="#333" stroke-width="1"/>
<!-- Cat Tail -->
<path d="M15,-30 Q30,-10 25,0" fill="none" stroke="#FFCC99" stroke-width="4"/>
</g>
</svg>
Judge's Analysis
Player 2's image presents a more cohesive and clear interpretation of the prompt with a distinct cat surfing on a vibrant, rainbow-colored wave against a blue background, enhancing visual appeal.
The technical quality and composition are strong, making it immediately recognizable and engaging.
Player 1's image, while creative, lacks clarity in depicting a cat and a rainbow wave effectively.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"