Creative Challenge
"Cactus juggling planets in desert sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#F87060"/>
<stop offset="100%" stop-color="#FB9651"/>
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#77ACF1"/>
<stop offset="100%" stop-color="#A2D2FF"/>
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#93F9B9"/>
<stop offset="100%" stop-color="#5BC67F"/>
</radialGradient>
<linearGradient id="sunset" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FB9651"/>
<stop offset="100%" stop-color="#F87060"/>
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#sunset)" />
<path d="M150 200 C 150 250, 100 280, 80 290 L 220 290 C 200 280, 150 250, 150 200 Z" fill="#262626" stroke="#1A1A1A" stroke-width="3" />
<path d="M 150 150 C 170 120, 140 100, 120 100 Q 100 100 110 160 L 190 160 Q 200 100 180 100 C 160 100 130 120 150 150 Z" fill="#558B2F"/>
<circle cx="90" cy="120" r="20" fill="url(#planet1)" stroke="white" stroke-width="1"/>
<ellipse cx="150" cy="80" rx="25" ry="15" fill="url(#planet2)" stroke="white" stroke-width="1"/>
<polygon points="220,90 230,70 240,90 250,70 230,50" fill="url(#planet3)" stroke="white" stroke-width="1"/>
<path d="M140 180 C 130 170, 150 160, 140 150" stroke="#262626" stroke-width="3" stroke-linecap="round"/>
<path d="M160 180 C 170 170, 150 160, 160 150" stroke="#262626" stroke-width="3" stroke-linecap="round"/>
<ellipse cx="150" cy="220" rx="20" ry="10" fill="#262626"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF6F61"/>
<stop offset="50%" stop-color="#FFB347"/>
<stop offset="100%" stop-color="#FFD700"/>
</linearGradient>
<radialGradient id="planet1Gradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#FF8C42"/>
<stop offset="100%" stop-color="#FF6347"/>
</radialGradient>
<radialGradient id="planet2Gradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#1E90FF"/>
<stop offset="100%" stop-color="#00BFFF"/>
</radialGradient>
<radialGradient id="planet3Gradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#9370DB"/>
<stop offset="100%" stop-color="#8A2BE2"/>
</radialGradient>
<pattern id="sandPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#E0AC69"/>
<circle cx="5" cy="5" r="2" fill="#D2B48C"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<rect x="0" y="220" width="300" height="80" fill="url(#sandPattern)"/>
<g transform="translate(150, 180)">
<ellipse cx="0" cy="0" rx="40" ry="100" fill="#8FBC8F"/>
<ellipse cx="0" cy="-50" rx="30" ry="60" fill="#9ACD32"/>
<ellipse cx="0" cy="-90" rx="20" ry="40" fill="#32CD32"/>
</g>
<g transform="translate(150, 180)">
<circle cx="-80" cy="-100" r="20" fill="url(#planet1Gradient)"/>
<circle cx="0" cy="-130" r="20" fill="url(#planet2Gradient)"/>
<circle cx="80" cy="-100" r="20" fill="url(#planet3Gradient)"/>
</g>
<g transform="translate(150, 180)">
<line x1="-80" y1="-80" x2="-80" y2="-120" stroke="#8FBC8F" stroke-width="3"/>
<line x1="0" y1="-110" x2="0" y2="-150" stroke="#8FBC8F" stroke-width="3"/>
<line x1="80" y1="-80" x2="80" y2="-120" stroke="#8FBC8F" stroke-width="3"/>
</g>
<circle cx="250" cy="50" r="30" fill="#FFD700"/>
</svg>
Judge's Analysis
Player 2's submission effectively captures the theme of a cactus juggling planets with clearer representation and vibrant color contrast against the sunset background.
The composition is more cohesive, with a distinct cactus shape and recognizable planets.
Player 1's image is abstract and less recognizable, making it harder to interpret the theme accurately.
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 iceberg made of floating clocks"
"A steampunk octopus playing a brass trumpet underwater"
"Glowing jellyfish in a desert, floating above cacti under a starry sky"
"A giraffe in a spacesuit floating among stars and planets"