Creative Challenge
"A cactus wearing a bow tie and monocle, sipping tea in the desert"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cactusGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#008000" />
<stop offset="100%" stop-color="#006400" />
</radialGradient>
<pattern id="desertSand" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="20" height="20" fill="#F4A460" />
<circle cx="10" cy="10" r="3" fill="#DEB887" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#desertSand)" />
<path d="M150 150 C 120 200, 180 200, 150 150 Z M 130 170 C 110 220, 170 220, 150 170 Z" fill="url(#cactusGradient)" stroke="#004d00" stroke-width="3" />
<ellipse cx="140" cy="100" rx="10" ry="15" fill="white" />
<circle cx="140" cy="105" r="5" fill="black" />
<path d="M130 90 L 120 80 L 110 90" stroke="black" stroke-width="2" />
<path d="M110 140 C 100 145, 100 155, 110 160 L 90 165 L 90 135 Z" fill="red" />
<ellipse cx="160" cy="130" rx="15" ry="8" fill="white" stroke="black" stroke-width="1" />
<path d="M130 160 C 140 170, 160 170, 170 160" stroke="black" stroke-width="3" />
<path d="M200 250 L 250 250 A 25 25 0 0 0 250 200 L 200 200" stroke="#A0522D" fill="transparent" stroke-width="3" />
<ellipse cx="225" cy="225" rx="20" ry="15" transform="rotate(-10, 225, 225)" fill="#8B4513" stroke="black" stroke-width="1" />
<path d="M220 220 L220 230 L 230 225 Z" fill="white" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Background -->
<rect x="0" y="0" width="300" height="300" fill="#F5F5DC" rx="20" />
<linearGradient id="desert-sunset" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFC080" />
<stop offset="1" stop-color="#FF9900" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#desert-sunset)" rx="20" opacity="0.5" />
<!-- Cactus -->
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="50" fill="#8B9467" />
<circle cx="0" cy="0" r="40" fill="#78815F" />
<circle cx="0" cy="0" r="30" fill="#5C6B5C" />
<circle cx="0" cy="0" r="20" fill="#3E4B3E" />
<circle cx="0" cy="0" r="10" fill="#2F3732" />
<circle cx="0" cy="0" r="5" fill="#1F2321" />
<!-- Spines -->
<line x1="-20" y1="-30" x2="-20" y2="30" stroke="#3E4B3E" stroke-width="5" />
<line x1="20" y1="-30" x2="20" y2="30" stroke="#3E4B3E" stroke-width="5" />
<line x1="-30" y1="-20" x2="30" y2="-20" stroke="#3E4B3E" stroke-width="5" />
<line x1="-30" y1="20" x2="30" y2="20" stroke="#3E4B3E" stroke-width="5" />
<!-- Bow Tie -->
<path d="M -20, -10 L 20, -10 L 20, 10 L -20, 10 Z" fill="#660033" />
<path d="M -15, -5 L 15, -5 L 15, 5 L -15, 5 Z" fill="#660066" />
<!-- Monocle -->
<circle cx="15" cy="-35" r="10" fill="#333" />
<circle cx="15" cy="-35" r="5" fill="#FFF" />
<line x1="15" y1="-30" x2="15" y2="-40" stroke="#333" stroke-width="2" />
<!-- Tea Cup -->
<g transform="translate(-40, -50)">
<circle cx="0" cy="0" r="20" fill="#FFF" />
<circle cx="0" cy="0" r="15" fill="#FFC080" />
<path d="M -10, 10 L 10, 10 L 10, 20 L -10, 20 Z" fill="#FFC080" />
<line x1="-10" y1="20" x2="10" y2="20" stroke="#FFC080" stroke-width="2" />
</g>
<!-- Tea -->
<circle cx="-40" cy="-40" r="10" fill="#FFC080" />
<circle cx="-40" cy="-40" r="5" fill="#FFF" />
</g>
</svg>
Judge's Analysis
Player 1's image more clearly represents the concept of a cactus with identifiable features such as a monocle, bow tie, and a cup suggesting it is sipping tea.
The desert background is implied with the color choice.
Player 2's image, while abstract, lacks clear elements that directly adhere 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 playing chess on a floating lily pad"
"Ceiling fan made of rainbow-colored leaves spinning"
"Squirrel in a space helmet floating among stars"
"Snowman DJ mixing beats under a neon aurora"
"A cat in a wizard hat, casting a spell on a ghostly fish"
"Flying fish surfing on rainbow waves"