Creative Challenge
"Dandelion clock in a tornado, seeds swirling into whimsical creatures"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="tornadoGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0" />
<stop offset="100%" style="stop-color:rgb(100,100,255);stop-opacity:1" />
</radialGradient>
<radialGradient id="seedToCreature" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" style="stop-color:rgb(255,245,224);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,190,124);stop-opacity:0" />
</radialGradient>
<pattern id="seedPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="url(#seedToCreature)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#tornadoGradient)" />
<!-- Dandelion clock base -->
<circle cx="150" cy="250" r="10" fill="rgb(170,240,100)" />
<line x1="150" y1="250" x2="150" y2="200" stroke="rgb(170,240,100)" stroke-width="2" />
<!-- Tornado swirl -->
<path d="M135 200 Q150 180 165 200" fill="none" stroke="white" stroke-width="0.5" />
<path d="M130 180 Q150 150 170 180" fill="none" stroke="white" stroke-width="0.5" />
<path d="M125 160 Q150 120 175 160" fill="none" stroke="white" stroke-width="0.5" />
<!-- Swirling seeds turning into creatures -->
<path d="M150 190 C160 180, 140 160, 160 150" stroke="url(#seedToCreature)" fill="none" stroke-width="1" />
<circle cx="160" cy="150" r="5" fill="url(#seedPattern)" />
<path d="M130 170 C140 160, 140 140, 150 130" stroke="url(#seedToCreature)" fill="none" stroke-width="1" />
<ellipse cx="150" cy="130" rx="3" ry="5" fill="rgb(255,160,122)" />
<rect x="148" y="128" width="4" height="4" fill="rgb(255,127,80)" />
<path d="M170 170 C180 160, 180 140, 190 130" stroke="url(#seedToCreature)" fill="none" stroke-width="1" />
<polygon points="190,130 194,136 186,136" fill="rgb(255,218,185)" />
<circle cx="190" cy="138" r="2" fill="rgb(255,160,122)" />
<path d="M140 190 C135 185, 130 160, 125 150" stroke="url(#seedToCreature)" fill="none" stroke-width="1" />
<path d="M125 150 Q120 145 130 140" fill="none" stroke="rgb(221,160,221)" stroke-width="1" />
<circle cx="130" cy="140" r="3" fill="rgb(199,21,133)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="300" height="300" fill="#87CEEB" />
<!-- Tornado swirl -->
<path d="M150,150 Q130,130 120,100 Q130,70 150,50 Q170,70 180,100 Q170,130 150,150" fill="#6495ED" />
<!-- Dandelion clock seeds -->
<g>
<circle cx="150" cy="150" r="2" fill="#FFFFFF" />
<circle cx="140" cy="140" r="2" fill="#FFFFFF" />
<circle cx="160" cy="140" r="2" fill="#FFFFFF" />
<circle cx="140" cy="160" r="2" fill="#FFFFFF" />
<circle cx="160" cy="160" r="2" fill="#FFFFFF" />
<circle cx="135" cy="150" r="2" fill="#FFFFFF" />
<circle cx="165" cy="150" r="2" fill="#FFFFFF" />
<circle cx="150" cy="135" r="2" fill="#FFFFFF" />
<circle cx="150" cy="165" r="2" fill="#FFFFFF" />
</g>
<!-- Whimsical creatures -->
<g>
<!-- Creature 1: Bird -->
<path d="M100,100 Q90,90 80,100 Q90,110 100,100" fill="#FFD700" />
<circle cx="85" cy="95" r="2" fill="#000000" />
<circle cx="95" cy="95" r="2" fill="#000000" />
<path d="M90,105 Q85,115 95,115 Q105,115 110,105" fill="none" stroke="#000000" />
<!-- Creature 2: Butterfly -->
<circle cx="200" cy="100" r="5" fill="#FF69B4" />
<path d="M202,100 Q210,90 218,100 Q210,110 202,100" fill="#FF69B4" />
<path d="M220,100 Q230,90 240,100 Q230,110 220,100" fill="#FF69B4" />
<!-- Creature 3: Alien -->
<ellipse cx="150" cy="200" rx="10" ry="15" fill="#00FF00" />
<circle cx="145" cy="200" r="2" fill="#000000" />
<circle cx="155" cy="200" r="2" fill="#000000" />
<circle cx="150" cy="208" r="2" fill="#000000" />
<path d="M142,190 Q150,185 158,190" fill="none" stroke="#000000" />
</g>
</svg>
Judge's Analysis
Player 1's submission captures the essence of a dandelion clock with swirling seeds transforming into whimsical forms, creating a sense of motion and transformation.
The gradient background adds depth, enhancing the visual appeal.
Player 2's image, while colorful, lacks the dynamic representation of a tornado and whimsical transformation, making Player 1's image more 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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"