Creative Challenge
"Floating island with a single giant dandelion and hovering bee"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" style="stop-color:rgb(135,206,250);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(173,216,230);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Floating Island -->
<g id="island">
<polygon points="150,200 100,270 200,270" fill="saddlebrown" stroke="white" stroke-width="1" />
<ellipse cx="150" cy="190" rx="60" ry="20" fill="forestgreen" />
</g>
<!-- Dandelion -->
<line x1="150" y1="160" x2="150" y2="110" stroke="#8FBC8F" stroke-width="4" />
<circle cx="150" cy="100" r="40" fill="none" stroke="white" stroke-width="2" />
<!-- Dandelion Seeds -->
<g fill="white">
<line x1="150" y1="60" x2="140" y2="30" stroke="white" stroke-width="1" />
<line x1="150" y1="60" x2="160" y2="30" stroke="white" stroke-width="1" />
<circle cx="140" cy="30" r="2" />
<circle cx="160" cy="30" r="2" />
<line x1="190" y1="80" x2="210" y2="60" stroke="white" stroke-width="1" />
<circle cx="210" cy="60" r="2" />
<line x1="110" y1="80" x2="90" y2="60" stroke="white" stroke-width="1" />
<circle cx="90" cy="60" r="2" />
</g>
<!-- Hovering Bee -->
<g id="bee" transform="rotate(-10, 80, 100)">
<ellipse cx="80" cy="100" rx="15" ry="10" fill="yellow" stroke="black" stroke-width="2"/>
<!-- Stripes -->
<line x1="75" y1="95" x2="85" y2="95" stroke="black" stroke-width="2"/>
<line x1="75" y1="100" x2="85" y2="100" stroke="black" stroke-width="2"/>
<line x1="75" y1="105" x2="85" y2="105" stroke="black" stroke-width="2"/>
<!-- Wings -->
<ellipse cx="75" cy="90" rx="8" ry="5" fill="lightblue" fill-opacity="0.6"/>
<ellipse cx="85" cy="90" rx="8" ry="5" fill="lightblue" fill-opacity="0.6"/>
<!-- Stinger -->
<polygon points="67,100 70,103 70,97" fill="black"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Island -->
<g transform="translate(50, 150)">
<ellipse cx="100" cy="50" rx="70" ry="30" fill="#32CD32" opacity="0.7" />
<path d="M100,80C130,80 150,60 150,40L150,20C150,0 120,0 100,20L50,40C50,60 70,80 100,80Z" fill="#228B22" opacity="0.5" />
</g>
<!-- Dandelion -->
<g transform="translate(120, 50)">
<circle cx="0" cy="0" r="30" fill="#F2C464" />
<path d="M0,0L-30,60L-60,0L0,60L60,0L30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
<path d="M-30,60L-60,90L-90,60L-60,30L-30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
<path d="M30,60L60,90L90,60L60,30L30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
<path d="M0,60L-30,90L-60,60L0,30L30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
</g>
<!-- Bee -->
<g transform="translate(180, 80)">
<ellipse cx="0" cy="0" rx="10" ry="5" fill="#F7DC6F" stroke="#000" stroke-width="2" />
<path d="M-10,0L-20,-10L-10,-20L0,-10L10,-20L20,-10L10,0Z" fill="#F2C464" stroke="#000" stroke-width="2" />
<path d="M-10,0L-10,10L-20,20L-30,10L-20,0Z" fill="#F2C464" stroke="#000" stroke-width="2" />
<circle cx="10" cy="5" r="2" fill="#000" />
</g>
<!-- Gradients and patterns -->
<defs>
<linearGradient id="grad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#66CCCC" />
<stop offset="100%" stop-color="#3399FF" />
</linearGradient>
<pattern id="pat" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="5" height="5" fill="#CCCCCC" />
<rect x="5" y="5" width="5" height="5" fill="#CCCCCC" />
</pattern>
</defs>
<!-- Sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#grad)" opacity="0.3" />
<!-- Island shadow -->
<ellipse cx="150" cy="250" rx="70" ry="30" fill="#000" opacity="0.2" />
<!-- Texture -->
<rect x="0" y="0" width="300" height="300" fill="url(#pat)" opacity="0.1" />
</svg>
Judge's Analysis
Player 1's submission clearly adheres to the prompt with a simple yet effective depiction of a floating island, a distinct giant dandelion, and a hovering bee.
The composition is minimalistic but directly represents the idea given.
Player 2's submission is more abstract and less recognizable, making it harder to relate to the prompt's elements.
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
"Two-legged cat juggling four colorful fish under a rainbow arch"
"Floating castle tangled in glowing balloon strings"
"Giraffe wearing a tuxedo, holding an umbrella on a moonlit beach"
"Robot dinosaur juggling planets in a circus"
"Uneven chessboard floating above a serene koi pond"
"Singing ice cream cone on a stage with spotlights"