Creative Challenge
"A cactus wearing a tutu, twirling under a disco ball in the desert"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="discoLight" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgba(255,255,255,0.9)"/>
<stop offset="100%" style="stop-color:rgba(255,255,255,0)"/>
</radialGradient>
<pattern id="sand" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#e6c588"/>
<circle cx="0" cy="0" r="1" fill="#d4b176"/>
</pattern>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="200" fill="#2c1810"/>
<!-- Desert floor -->
<rect x="0" y="200" width="300" height="100" fill="url(#sand)"/>
<!-- Disco ball -->
<circle cx="150" cy="50" r="20" fill="#silver" stroke="#white" stroke-width="1">
<animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="50" r="40" fill="url(#discoLight)" opacity="0.6">
<animate attributeName="opacity" values="0.3;0.6;0.3" dur="1.5s" repeatCount="indefinite"/>
</circle>
<!-- Cactus body -->
<g transform="translate(150,170) rotate(5)">
<path d="M-20,0 Q-20,-80 0,-80 Q20,-80 20,0" fill="#2d5a27"/>
<path d="M-15,-30 L-35,-40 Q-45,-40 -45,-30 Q-45,-20 -35,-20 L-15,-25" fill="#2d5a27"/>
<path d="M15,-50 L35,-60 Q45,-60 45,-50 Q45,-40 35,-40 L15,-45" fill="#2d5a27"/>
<!-- Tutu -->
<path d="M-30,0 Q-30,20 0,20 Q30,20 30,0" fill="#ff69b4" opacity="0.8"/>
<path d="M-25,0 Q-25,15 0,15 Q25,15 25,0" fill="#ff1493" opacity="0.9"/>
<!-- Cactus face -->
<circle cx="-5" cy="-60" r="2" fill="black"/>
<circle cx="5" cy="-60" r="2" fill="black"/>
<path d="M-6,-50 Q0,-45 6,-50" fill="none" stroke="black" stroke-width="2"/>
<!-- Spinning animation -->
<animateTransform
attributeName="transform"
type="rotate"
from="0"
to="360"
dur="4s"
repeatCount="indefinite"
additive="sum"/>
</g>
<!-- Light beams -->
<g opacity="0.5">
<path d="M120,50 L80,200" stroke="yellow" stroke-width="2" opacity="0.3"/>
<path d="M180,50 L220,200" stroke="pink" stroke-width="2" opacity="0.3"/>
<path d="M150,70 L150,200" stroke="purple" stroke-width="2" opacity="0.3"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,99,71);stop-opacity:1" />
</linearGradient>
<radialGradient id="gradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(105,105,105);stop-opacity:1" />
</radialGradient>
<pattern id="discoPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="5" fill="url(#gradient1)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#discoPattern)" />
<circle cx="150" cy="100" r="50" fill="url(#gradient2)" />
<rect x="120" y="150" width="60" height="50" fill="url(#gradient1)" rx="30" />
<path d="M100 175 L150 125 L200 175 Q175 150 150 175 Z" fill="url(#gradient1)" />
<path d="M125 200 C125 150 175 150 175 200 Z" fill="url(#gradient1)" />
<rect x="135" y="200" width="30" height="100" fill="url(#gradient1)" rx="15" />
<circle cx="150" cy="200" r="20" fill="white" />
<circle cx="150" cy="195" r="10" fill="black" />
<circle cx="150" cy="210" r="15" fill="white" />
<circle cx="150" cy="215" r="5" fill="black" />
<circle cx="150" cy="220" r="10" fill="white" />
<circle cx="150" cy="225" r="5" fill="black" />
<path d="M150 100 L150 125 A25 25 0 0 1 150 100 Z" fill="url(#gradient1)" />
<path d="M150 125 A25 25 0 0 1 150 100 L150 125" fill="none" stroke="black" stroke-width="2" />
<path d="M150 150 A25 25 0 0 1 150 125 L150 150" fill="none" stroke="black" stroke-width="2" />
<path d="M150 175 A25 25 0 0 1 150 150 L150 175" fill="none" stroke="black" stroke-width="2" />
<circle cx="150" cy="100" r="50" fill="none" stroke="white" stroke-width="4" />
</svg>
Judge's Analysis
Player 1's image clearly depicts a cactus wearing a tutu, twirling under a disco ball in a desert setting, adhering closely to the prompt.
The use of color and simple shapes effectively conveys the whimsical theme.
Player 2's image, while visually interesting, lacks clarity in showing a cactus or a tutu and does not depict the scene as clearly or creatively as Player 1's submission.
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
"Giraffe wearing a space helmet juggling planets"
"Space garden in a teacup floating above a starry galaxy"
"Giraffe wearing a vintage diving helmet, standing in a teacup"
"Giraffe lounging in an armchair reading a tiny book"
"Surreal umbrella raining planets in a desert"
"Astronaut squirrel juggling planets"