Creative Challenge
"Cat soaring on a hoverboard under a glowing moon"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Moon -->
<circle cx="150" cy="75" r="60" fill="url(#moon-gradient)"/>
<linearGradient id="moon-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#F7DC6F" stop-opacity="1"/>
<stop offset="0.5" stop-color="#FFD700" stop-opacity="0.8"/>
<stop offset="1" stop-color="#FFC107" stop-opacity="0.5"/>
</linearGradient>
<!-- Stars -->
<symbol id="star">
<path d="M 5 0 L 0 5 L -5 0 L 0 -5 Z" fill="#FFFFFF" stroke="#FFFFFF" stroke-width="0.5"/>
</symbol>
<use xlink:href="#star" x="140" y="60" transform="scale(0.5)"/>
<use xlink:href="#star" x="160" y="80" transform="scale(0.7)"/>
<use xlink:href="#star" x="180" y="50" transform="scale(0.3)"/>
<use xlink:href="#star" x="120" y="70" transform="scale(0.4)"/>
<!-- Cat -->
<path d="M 150 180 C 140 190 130 200 120 210 L 110 220 L 100 230 L 90 240 C 80 250 70 260 60 270 L 50 280 L 40 290 L 30 300 Z" fill="url(#cat-gradient)" stroke="#000000" stroke-width="2"/>
<linearGradient id="cat-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFC080" stop-opacity="1"/>
<stop offset="0.5" stop-color="#FFA07A" stop-opacity="0.8"/>
<stop offset="1" stop-color="#FF9900" stop-opacity="0.5"/>
</linearGradient>
<!-- Hoverboard -->
<rect x="90" y="220" width="40" height="10" rx="5" fill="#0099CC" stroke="#000000" stroke-width="1"/>
<rect x="95" y="225" width="30" height="5" rx="2" fill="#FFFFFF" stroke="#000000" stroke-width="0.5"/>
<circle cx="110" cy="230" r="5" fill="#0099CC" stroke="#000000" stroke-width="1"/>
<circle cx="120" cy="230" r="5" fill="#0099CC" stroke="#000000" stroke-width="1"/>
<!-- Glow -->
<circle cx="150" cy="75" r="60" fill="none" stroke="url(#glow-gradient)" stroke-width="10"/>
<linearGradient id="glow-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFFFFF" stop-opacity="0.5"/>
<stop offset="0.5" stop-color="#FFFFFF" stop-opacity="0.2"/>
<stop offset="1" stop-color="#FFFFFF" stop-opacity="0.1"/>
</linearGradient>
<!-- Shadow -->
<path d="M 150 180 C 140 190 130 200 120 210 L 110 220 L 100 230 L 90 240 C 80 250 70 260 60 270 L 50 280 L 40 290 L 30 300 Z" fill="#000000" opacity="0.2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<defs>
<radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#e0e0ff" />
</radialGradient>
<linearGradient id="hoverboardGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff8c00" />
<stop offset="100%" stop-color="#ff4500" />
</linearGradient>
<radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.65">
<stop offset="0%" stop-color="#1a237e" />
<stop offset="100%" stop-color="#000051" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Moon -->
<circle cx="230" cy="70" r="50" fill="url(#moonGradient)" />
<!-- Cat -->
<g transform="translate(100,130)">
<path d="M50 10 Q30 -10 10 20 Q15 40 20 60 Q40 55 60 60 Q65 40 75 25 Q60 10 50 10"
fill="lightgray" />
<circle cx="35" cy="25" r="3" fill="black" />
<circle cx="55" cy="25" r="3" fill="black" />
<path d="M42 32 C45 36 47 36 50 32" stroke="black" stroke-width="2" fill="none" />
<path d="M30 40 Q40 45 50 40" fill="none" stroke="black" stroke-width="2" />
</g>
<!-- Hoverboard -->
<g transform="translate(85,190)">
<path d="M30 0 C45 -5 85 -5 100 0 C105 10 95 20 35 20 C20 10 20 0 30 0 Z"
fill="url(#hoverboardGradient)" stroke="#d2691e" stroke-width="2"/>
<circle cx="40" cy="20" r="5" fill="blue" />
<circle cx="90" cy="20" r="5" fill="blue" />
</g>
<!-- Exhaust -->
<g>
<path d="M80 210 Q85 215 90 210 Q85 230 80 210" fill="aqua" opacity="0.7"/>
<path d="M130 210 Q135 215 140 210 Q135 230 130 210" fill="aqua" opacity="0.7"/>
</g>
</svg>
Judge's Analysis
Player 2's image effectively captures the whimsical concept of a cat soaring on a hoverboard under a glowing moon.
The composition is clear, with the moon prominently featured, enhancing the visual appeal.
Player 1's image, while creative, lacks clarity and definition, making it less effective in conveying 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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Two giraffes wearing top hats, fencing on a tightrope"