Creative Challenge
"Invisible butterfly outlined by raindrops on a window pane"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with subtle gradient and texture -->
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<!-- Window frame -->
<rect x="20" y="20" width="260" height="260" fill="none" stroke="#333" stroke-width="4" />
<!-- Raindrops -->
<g id="raindrops">
<!-- Multiple raindrops with varying sizes and positions -->
<circle cx="50" cy="100" r="4" fill="white" opacity="0.8" filter="url(#dropBlur)" />
<circle cx="80" cy="150" r="3" fill="white" opacity="0.6" filter="url(#dropBlur)" />
<circle cx="120" cy="200" r="5" fill="white" opacity="0.7" filter="url(#dropBlur)" />
<circle cx="160" cy="180" r="4" fill="white" opacity="0.5" filter="url(#dropBlur)" />
<circle cx="200" cy="160" r="3" fill="white" opacity="0.6" filter="url(#dropBlur)" />
<circle cx="240" cy="120" r="4" fill="white" opacity="0.7" filter="url(#dropBlur)" />
</g>
<!-- Butterfly path -->
<path id="butterflyPath" d="M150,100 L120,80 Q140,60 160,80 L170,100 Q160,120 140,140 L120,160 Q100,140 80,120 L70,100 Q60,80 120,70 L140,60 Q160,80 150,100Z" fill="none" stroke="transparent" stroke-width="2" />
<!-- Butterfly outline effect using clip-path -->
<clipPath id="butterflyClip">
<path d="M0,0 H300 V300 H0z D" />
<use xlink:href="#butterflyPath" overflow="visible" />
</clipPath>
<!-- Masking raindrops with butterfly shape -->
<use xlink:href="#raindrops" clip-path="url(#butterflyClip)" />
<!-- Gaussian blur filter for raindrops -->
<filter id="dropBlur">
<feGaussianBlur stdDeviation="1" />
</filter>
<!-- Background gradient -->
<defs>
<linearGradient id="backgroundGradient" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
<stop stop-color="#87CEEB" offset="0" />
<stop stop-color="#E0F6FF" offset="1" />
</linearGradient>
</defs>
<!-- Window pane distortion effect -->
<filter id="windowDistortion">
<feGaussianBlur stdDeviation="2" />
<feDisplacementMap scale="10" in="SourceGraphic" />
</filter>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="raindropGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#cce7ff" stop-opacity="0.5" />
<stop offset="100%" stop-color="#00529b" stop-opacity="0.1" />
</radialGradient>
<linearGradient id="backgroundGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#a7c7e7" />
<stop offset="100%" stop-color="#789BAD" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<g fill="url(#raindropGradient)">
<ellipse cx="80" cy="100" rx="4" ry="6" />
<ellipse cx="220" cy="100" rx="4" ry="6" />
<ellipse cx="150" cy="200" rx="4" ry="6" />
<ellipse cx="110" cy="160" rx="4" ry="6" />
<ellipse cx="190" cy="160" rx="4" ry="6" />
</g>
<g fill="none" stroke="url(#raindropGradient)" stroke-width="1.5">
<path d="M150,50 Q130,100 110,150 Q130,200 150,250" />
<path d="M150,50 Q170,100 190,150 Q170,200 150,250" />
<path d="M105,130 Q150,120 195,130" />
<path d="M105,170 Q150,180 195,170" />
</g>
<!-- Additional smaller raindrops scattered around -->
<g fill="url(#raindropGradient)">
<ellipse cx="60" cy="60" rx="2" ry="3" />
<ellipse cx="250" cy="60" rx="2" ry="3" />
<ellipse cx="40" cy="240" rx="2" ry="3" />
<ellipse cx="270" cy="240" rx="2" ry="3" />
<ellipse cx="220" cy="180" rx="2" ry="3" />
<ellipse cx="80" cy="220" rx="2" ry="3" />
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the concept of an 'invisible butterfly outlined by raindrops on a window pane' through subtle use of geometric shapes and well-placed droplets, creating an ethereal representation.
The technical quality is decent, with a clear, minimalist design that adheres closely to the prompt.
Player 1's image did not load, so it could not be evaluated.
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-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"