Creative Challenge
"Floating enchanted cactus with lunar eyes in a starlit desert"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="desertSky" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#000428" />
<stop offset="100%" stop-color="#004e92" />
</radialGradient>
<radialGradient id="cactusGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#88d498" />
<stop offset="100%" stop-color="#2c6a7e" />
</radialGradient>
<linearGradient id="lunarEyes" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#888cbf" />
</linearGradient>
<pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="#fff" />
<circle cx="5" cy="2" r="1.5" fill="#fff" />
<circle cx="8" cy="8" r="1" fill="#fff" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#desertSky)" />
<rect width="300" height="300" fill="url(#stars)" />
<path d="M150 215 Q140 190 150 165 T170 105 T200 75" fill="url(#cactusGradient)">
<animateMotion dur="6s" repeatCount="indefinite" path="M0,0 Q50,-30 100,-30 Q150,-30 200,0" />
</path>
<circle cx="150" cy="95" r="8" fill="url(#lunarEyes)">
<animateMotion dur="6s" repeatCount="indefinite" path="M0,0 Q50,-30 100,-30 Q150,-30 200,0" />
</circle>
<circle cx="190" cy="130" r="6" fill="url(#lunarEyes)">
<animateMotion dur="6s" repeatCount="indefinite" path="M0,0 Q50,-30 100,-30 Q150,-30 200,0" />
</circle>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGlow" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#1a0033"/>
<stop offset="100%" stop-color="#000010"/>
</radialGradient>
<pattern id="stars" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8"/>
<circle cx="25" cy="45" r="0.6" fill="white" opacity="0.6"/>
<circle cx="40" cy="15" r="1" fill="white" opacity="0.7"/>
<circle cx="15" cy="35" r="0.7" fill="white" opacity="0.5"/>
</pattern>
<linearGradient id="cactusGlow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#44ff9a"/>
<stop offset="100%" stop-color="#1a6640"/>
</linearGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGlow)"/>
<rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>
<!-- Desert dunes -->
<path d="M0,220 Q75,180 150,220 T300,220 L300,300 L0,300 Z" fill="#2b1810"/>
<path d="M0,240 Q75,200 150,240 T300,240 L300,300 L0,300 Z" fill="#3d2315" opacity="0.7"/>
<!-- Main floating cactus -->
<g transform="translate(150,150)">
<path d="M-30,20 Q-40,-40 0,-60 Q40,-40 30,20 Q15,40 0,40 Q-15,40 -30,20 Z" fill="url(#cactusGlow)"/>
<path d="M-20,-10 Q-30,-30 -40,-25 Q-45,-15 -35,0 Z" fill="url(#cactusGlow)"/>
<path d="M20,-10 Q30,-30 40,-25 Q45,-15 35,0 Z" fill="url(#cactusGlow)"/>
<!-- Lunar eyes -->
<circle cx="-12" cy="-15" r="10" fill="#ffffff"/>
<circle cx="12" cy="-15" r="10" fill="#ffffff"/>
<circle cx="-12" cy="-15" r="6" fill="#000000"/>
<circle cx="12" cy="-15" r="6" fill="#000000"/>
<circle cx="-14" cy="-17" r="2" fill="#ffffff"/>
<circle cx="10" cy="-17" r="2" fill="#ffffff"/>
</g>
<!-- Floating particles -->
<g>
<circle cx="80" cy="100" r="2" fill="#44ff9a" opacity="0.6">
<animate attributeName="cy" values="100;90;100" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="220" cy="120" r="2" fill="#44ff9a" opacity="0.6">
<animate attributeName="cy" values="120;110;120" dur="2.5s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="80" r="2" fill="#44ff9a" opacity="0.6">
<animate attributeName="cy" values="80;70;80" dur="4s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by clearly depicting a cactus with facial features resembling lunar eyes, set against a starlit desert background.
The composition is visually appealing, with a clear night sky and desert landscape, enhancing the theme.
In contrast, Player 1's image is more abstract and less immediately recognizable as a cactus, making it 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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"An umbrella made of clouds, raining colorful candy drops"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Clock made of melting pancakes with syrup hands against a pink sunrise"