Creative Challenge
"A cat surfing on a book-shaped wave under a moon made of cheese"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#2a1f5f;stop-opacity:1"/>
</linearGradient>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ffd700;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#ffb300;stop-opacity:1"/>
</linearGradient>
<pattern id="cheeseHoles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="3" fill="white"/>
<circle cx="15" cy="15" r="2" fill="white"/>
<circle cx="5" cy="5" r="2" fill="white"/>
</pattern>
<linearGradient id="waveGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#4682b4;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#00bcd4;stop-opacity:1"/>
</linearGradient>
<linearGradient id="catGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff9999;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#ffffff;stop-opacity:1"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<circle cx="250" cy="50" r="30" fill="url(#moonGradient)" stroke="gold" stroke-width="2"/>
<rect x="100" y="150" width="100" height="40" rx="20" fill="url(#waveGradient)" stroke="white" stroke-width="2"/>
<path d="M150,180 Q180,180 200,160 Q220,140 200,120 Q180,100 150,100 Q120,100 100,120 Q80,140 100,160 Q120,180 150,180" fill="none" stroke="white" stroke-width="2"/>
<g transform="translate(170,190)">
<path d="M0,0 Q20,0 30,20 Q40,40 30,60 Q20,80 0,80 Q-10,80 -20,60 Q-30,40 -20,20 Q-10,0 0,0" fill="url(#catGradient)" stroke="pink" stroke-width="2"/>
<path d="M-5,25 L-25,25 L-15,15" fill="pink"/>
<path d="M5,25 L25,25 L15,15" fill="pink"/>
</g>
<rect x="140" y="180" width="20" height="40" rx="5" fill="white"/>
<path d="M150,200 Q170,210 180,200 Q190,190 180,180 Q170,170 160,180 Q150,190 150,200" fill="none" stroke="white" stroke-width="2"/>
<text x="140" y="185" font-size="10" fill="white">📖</text>
<text x="155" y="185" font-size="10" fill="white">📖</text>
<text x="170" y="185" font-size="10" fill="white">📖</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="20%" stop-color="#ffeb99" />
<stop offset="100%" stop-color="#ffd633" />
</radialGradient>
<linearGradient id="waveGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#6ab7ff" />
<stop offset="100%" stop-color="#1e5799" />
</linearGradient>
<pattern id="bookPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="5" fill="#7b3f00" />
<rect x="0" y="5" width="10" height="5" fill="#d3a15c" />
</pattern>
</defs>
<rect width="300" height="300" fill="#001f33" />
<!-- Moon made of cheese -->
<circle cx="240" cy="60" r="40" fill="url(#moonGradient)" />
<circle cx="255" cy="50" r="8" fill="#fff999" />
<circle cx="225" cy="75" r="5" fill="#fff999" />
<circle cx="245" cy="80" r="3" fill="#fff999" />
<!-- Book-shaped wave -->
<path d="M260,200 Q220,140 180,180 Q140,220 100,180 Q60,140 20,180" fill="url(#waveGradient)" />
<!-- Book on wave -->
<rect x="80" y="145" width="60" height="20" fill="url(#bookPattern)" />
<line x1="80" y1="155" x2="140" y2="155" stroke="#000" stroke-width="1" />
<polygon points="80,145 140,145 130,125 70,125" fill="#7b3f00" />
<!-- Cat surfing -->
<g transform="translate(110,130)">
<circle cx="0" cy="-10" r="10" fill="#f9d29d" />
<path d="M-10,-15 C-15,-20 -15,-30 -5,-28 S5,-20 10,-15" fill="#f9d29d" />
<polygon points="10,-15 14,-10 8,-5" fill="#f9d29d" />
<polygon points="-10,-15 -14,-10 -8,-5" fill="#f9d29d" />
<circle cx="-3" cy="-12" r="2" fill="#000" />
<circle cx="3" cy="-12" r="2" fill="#000" />
<path d="M-3,-8 Q0,0 3,-8" fill="none" stroke="#000" stroke-width="1" />
<path d="M-10,0 C-8,10 8,10 10,0" fill="#f9d29d" />
<rect x="-3" y="0" width="6" height="17" fill="#f9d29d" />
<path d="M-20,5 C-15,0 15,0 20,5 Q0,13 -20,5" fill="#fff999" />
</g>
</svg>
Judge's Analysis
Player 2's image better captures the prompt with a more recognizable depiction of a cat surfing on a book-shaped wave, and the moon more clearly resembles cheese.
The composition is visually appealing and adheres closely to the theme, showcasing technical quality and creativity.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"