Creative Challenge
"Two giraffes in space suits playing chess on the moon."
<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="0%" stop-color="#e0e0e0" />
<stop offset="100%" stop-color="#a0a0a0" />
</radialGradient>
<pattern id="giraffePattern" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="20" height="20" fill="#f0c060" />
<circle cx="5" cy="5" r="3" fill="#a06020" />
<circle cx="15" cy="15" r="3" fill="#a06020" />
</pattern>
</defs>
<circle cx="150" cy="250" r="100" fill="url(#moonGradient)" />
<g transform="translate(50, 50)">
<ellipse cx="50" cy="150" rx="20" ry="40" fill="url(#giraffePattern)" />
<circle cx="50" cy="110" r="20" fill="white" />
<rect x="30" y="110" width="40" height="40" fill="lightblue" stroke="black" />
<path d="M 40,100 A 10 10 0 0 1 60,100" fill="none" stroke="black" stroke-width="5" />
</g>
<g transform="translate(150, 50)">
<ellipse cx="50" cy="150" rx="20" ry="40" fill="url(#giraffePattern)" />
<circle cx="50" cy="110" r="20" fill="white" />
<rect x="30" y="110" width="40" height="40" fill="pink" stroke="black" />
<path d="M 40,100 A 10 10 0 0 0 60,100" fill="none" stroke="black" stroke-width="5" />
</g>
<rect x="100" y="140" width="100" height="40" fill="#402000" stroke="black" />
<g transform="translate(110,145)">
<rect x="0" y="0" width="15" height="30" fill="white" />
<rect x="20" y="0" width="15" height="30" fill="black" />
<rect x="40" y="0" width="15" height="30" fill="white" />
<rect x="60" y="0" width="15" height="30" fill="black" />
</g>
<circle cx="70" cy="160" r="10" fill="white">
<animate attributeName="cx" from="70" to="230" dur="5s" repeatCount="indefinite" />
</circle>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonSurface" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#4a4a4a"/>
<stop offset="100%" stop-color="#2d2d2d"/>
</radialGradient>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#0b0b3d"/>
<stop offset="100%" stop-color="#1a1a1a"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<g opacity="0.8">
<circle cx="40" cy="50" r="2" fill="#fff" opacity="0.8"/>
<circle cx="280" cy="120" r="3" fill="#7fffd4"/>
<circle cx="150" cy="30" r="1.5" fill="#fff"/>
</g>
<!-- Moon surface -->
<path d="M0 250 Q150 280 300 250 L300 300 0 300Z" fill="url(#moonSurface)"/>
<circle cx="200" cy="260" r="15" fill="#3a3a3a"/>
<circle cx="80" cy="270" r="8" fill="#404040"/>
<!-- Chessboard -->
<g transform="translate(100 150) rotate(15)">
<rect x="-40" y="-40" width="80" height="80" fill="#654321"/>
<path d="M-40-40v80h80v-80zm10 0v80m10-80v80m10-80v80m10-80v80m10-80v80" stroke="#fff" stroke-width="2"/>
<path d="M-40-40h80v80h-80zm10 0v80m10-80v80m10-80v80m10-80v80m10-80v80" stroke="#fff" stroke-width="2"/>
</g>
<!-- Giraffe 1 -->
<g transform="translate(70 180)">
<path d="M0 0l20-100 10 100" fill="#ffd700"/>
<circle cx="10" cy="-110" r="15" fill="#ffe4b5"/>
<rect x="-5" y="-120" width="30" height="20" rx="5" fill="#2f4f4f"/>
<path d="M-15-95a20 20 0 0 1 40 0" fill="#fff" opacity="0.2"/>
<rect x="-8" cy="-50" y="-80" width="16" height="60" fill="#ffd700"/>
</g>
<!-- Giraffe 2 -->
<g transform="translate(200 160) scale(-1 1)">
<path d="M0 0l20-80 10 80" fill="#ff4500"/>
<circle cx="10" cy="-90" r="12" fill="#ffa07a"/>
<rect x="-7" y="-100" width="24" height="18" rx="4" fill="#1e90ff"/>
<path d="M-12-80a18 18 0 0 1 36 0" fill="#fff" opacity="0.2"/>
<rect x="-6" cy="-40" y="-70" width="12" height="50" fill="#ff4500"/>
</g>
<!-- Chess pieces -->
<path d="M140 130h4v20h-4z" fill="#fff"/>
<path d="M160 110h4v25h-4z" fill="#000"/>
<circle cx="150" cy="140" r="5" fill="#fff" filter="url(#glow)"/>
<!-- Earth -->
<circle cx="250" cy="50" r="20" fill="#1e90ff"/>
<path d="M250 35a15 15 0 0 1 10 25" fill="#228b22"/>
<path d="M240 45a10 10 0 0 1 15-5" fill="#f0e68c"/>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt with clear depictions of two giraffes in space suits, a chessboard, and a moon-like setting, all rendered with a creative use of shapes and colors.
Player 1's submission is less detailed and lacks clarity in representing the giraffes or the setting, making it less visually appealing and less aligned with 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
"A melting clock in a desert with a tiny, curious cactus wearing sunglasses."
"An octopus playing a grand piano underwater."
"A giraffe wearing a neon superhero cape, leaping over a crescent moon"
"A giraffe wearing a top hat, riding a unicycle on a tightrope"