Creative Challenge
"A dragonfly with stained glass wings over a moonlit water lily"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4169E1;stop-opacity:1" />
<stop offset="100%" style="stop-color:#008080;stop-opacity:1" />
</linearGradient>
<radialGradient id="wingGradient1" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:0.5" />
</radialGradient>
<radialGradient id="wingGradient2" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#00FF00;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#008000;stop-opacity:0.5" />
</radialGradient>
</defs>
<g transform="translate(150,150)">
<!-- Dragonfly Body -->
<rect x="-20" y="-40" width="40" height="80" rx="10" fill="url(#dragonGradient)" />
<!-- Dragonfly Wings -->
<g transform="rotate(-30)">
<path d="M-30,-20 Q0,0 30,-20" fill="url(#wingGradient1)" opacity="0.7" />
<path d="M-30,-10 Q0,0 30,-10" fill="url(#wingGradient2)" opacity="0.6" />
<path d="M-30,0 Q0,0 30,0" fill="url(#wingGradient1)" opacity="0.5" />
</g>
<!-- Water Lily -->
<circle cx="0" cy="50" r="40" fill="url(#lilyPadGradient)" />
<circle cx="0" cy="30" r="20" fill="url(#lilyFlowerGradient)" />
<rect x="-10" y="60" width="20" height="30" rx="5" fill="#4B6455" />
<!-- Water Reflections -->
<circle cx="-40" cy="-30" r="15" fill="#9370DB" opacity="0.3" />
<circle cx="40" cy="-20" r="12" fill="#87CEEB" opacity="0.3" />
<circle cx="-20" cy="-10" r="10" fill="#8A2BE2" opacity="0.3" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Moonlit water lily -->
<ellipse cx="150" cy="250" rx="120" ry="30" fill="#2E4053" opacity="0.7" />
<ellipse cx="150" cy="250" rx="80" ry="20" fill="#87CEEB" opacity="0.5" />
<path d="M150,200 Q180,220 200,250 Q220,280 250,300 Q280,320 300,350 Q320,380 350,400 Q380,420 400,450 Q420,480 450,500" stroke="#ADD8E6" stroke-width="2" fill="none" opacity="0.8" />
<!-- Water ripples -->
<circle cx="150" cy="250" r="50" fill="none" stroke="#C5CAE9" stroke-width="2" opacity="0.4" />
<circle cx="150" cy="250" r="70" fill="none" stroke="#C5CAE9" stroke-width="2" opacity="0.3" />
<circle cx="150" cy="250" r="90" fill="none" stroke="#C5CAE9" stroke-width="2" opacity="0.2" />
<!-- Dragonfly body -->
<path d="M100,150 Q120,130 150,100 Q180,70 200,50 Q220,30 250,10 Q280,-10 300,-30" stroke="#8BC34A" stroke-width="4" fill="none" />
<ellipse cx="150" cy="100" rx="20" ry="15" fill="#8BC34A" />
<!-- Stained glass wings -->
<defs>
<linearGradient id="wingGradient1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#F44336" />
<stop offset="20%" stop-color="#FF9800" />
<stop offset="40%" stop-color="#FFC107" />
<stop offset="60%" stop-color="#8BC34A" />
<stop offset="80%" stop-color="#2196F3" />
<stop offset="100%" stop-color="#3F51B5" />
</linearGradient>
<linearGradient id="wingGradient2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#9C27B0" />
<stop offset="20%" stop-color="#E91E63" />
<stop offset="40%" stop-color="#FF69B4" />
<stop offset="60%" stop-color="#CDDC39" />
<stop offset="80%" stop-color="#4CAF50" />
<stop offset="100%" stop-color="#009688" />
</linearGradient>
</defs>
<path d="M150,100 Q180,80 200,60 Q220,40 250,20 Q280,0 300,-20" fill="url(#wingGradient1)" />
<path d="M150,100 Q120,80 100,60 Q80,40 50,20 Q20,0 0,-20" fill="url(#wingGradient2)" />
<!-- Wing outlines -->
<path d="M150,100 Q180,80 200,60 Q220,40 250,20 Q280,0 300,-20" stroke="#263238" stroke-width="2" fill="none" />
<path d="M150,100 Q120,80 100,60 Q80,40 50,20 Q20,0 0,-20" stroke="#263238" stroke-width="2" fill="none" />
<!-- Eye details -->
<circle cx="160" cy="90" r="5" fill="#263238" />
<circle cx="140" cy="90" r="5" fill="#263238" />
</svg>
Judge's Analysis
Player 2's submission better captures the idea of a dragonfly with stained glass wings over a moonlit water lily.
The use of circular patterns and overlapping shapes effectively suggests the water lily and moonlit ambiance.
While Player 1 presents an abstract composition with vibrant colors, it lacks clarity and adherence to the specific elements of 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
"An astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"
"Peacock with clockwork feathers in a digital sunset"