Creative Challenge
"Bioluminescent jellyfish spiraling around a neon-lit diver"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="jellyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF61D2;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FF006D;stop-opacity:1"/>
</linearGradient>
<linearGradient id="diverGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00FFA6;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#00FF6B;stop-opacity:1"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="#001A33"/>
<!-- Diver -->
<g filter="url(#glow)">
<path d="M150,180c-50,0-50,50-0,50s50-50,0-50" fill="url(#diverGradient)" stroke="#00FF6B" stroke-width="2"/>
<rect x="140" y="180" width="20" height="40" fill="#00FFA6" rx="10"/>
<circle cx="150" cy="160" r="15" fill="#00FFFF" filter="url(#glow)"/>
</g>
<!-- Jellyfish -->
<g>
<path d="M120,100c0,40-35,70-70,70-35,0-65-30-65-65s30-65,65-65c35,0,70,30,70,65 0,35-35,65-70,65" fill="url(#jellyGradient)" filter="url(#glow)"/>
<path d="M280,150c0,40-35,70-70,70-35,0-65-30-65-65s30-65,65-65c35,0,70,30,70,65 0,35-35,65-70,65" fill="url(#jellyGradient)" filter="url(#glow)" transform="rotate(60 280 150)"/>
<path d="M80,220c0,40-35,70-70,70-35,0-65-30-65-65s30-65,65-65c35,0,70,30,70,65 0,35-35,65-70,65" fill="url(#jellyGradient)" filter="url(#glow)" transform="rotate(-60 80 220)"/>
</g>
<!-- Spiral Path -->
<path d="M150,100c0,50-50,100-100,100 50,0 100-50,100-100" stroke="#00FFFF" stroke-width="2" fill="none" stroke-dasharray="5,5" filter="url(#glow)"/>
<!-- Diver Details -->
<g transform="translate(150,180)">
<rect x="-10" y="-20" width="20" height="40" fill="#00FFA6" rx="10"/>
<rect x="-20" y="-10" width="40" height="20" fill="#00FFA6" rx="10"/>
</g>
<!-- Jellyfish Details -->
<g transform="translate(120,100)">
<circle cx="0" cy="0" r="5" fill="#FF61D2" filter="url(#glow)"/>
<circle cx="20" cy="-10" r="5" fill="#FF61D2" filter="url(#glow)"/>
<circle cx="-20" cy="-10" r="5" fill="#FF61D2" filter="url(#glow)"/>
</g>
<!-- Lights -->
<circle cx="150" cy="150" r="5" fill="#00FFFF" filter="url(#glow)"/>
<circle cx="130" cy="130" r="3" fill="#00FFFF" filter="url(#glow)"/>
<circle cx="170" cy="130" r="3" fill="#00FFFF" filter="url(#glow)"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#000" />
<!-- Neon-lit diver -->
<circle cx="150" cy="230" r="20" fill="#00ff00" stroke="#0f0" stroke-width="2" />
<rect x="140" y="250" width="20" height="30" fill="#00ff00" />
<line x1="150" y1="250" x2="150" y2="290" stroke="#0f0" stroke-width="2" />
<line x1="150" y1="270" x2="130" y2="250" stroke="#0f0" stroke-width="2" />
<line x1="150" y1="270" x2="170" y2="250" stroke="#0f0" stroke-width="2" />
<!-- Bioluminescent jellyfish -->
<!-- Tentacles -->
<path d="M150 70 Q130 50 110 70" fill="none" stroke="#00f" stroke-width="2" />
<path d="M150 70 Q140 40 130 70" fill="none" stroke="#00f" stroke-width="2" />
<path d="M150 70 Q160 50 170 70" fill="none" stroke="#00f" stroke-width="2" />
<path d="M150 70 Q160 40 170 70" fill="none" stroke="#00f" stroke-width="2" />
<!-- Body -->
<circle cx="150" cy="70" r="30" fill="#00f" stroke="#0af" stroke-width="2" />
<circle cx="150" cy="70" r="10" fill="#0af" />
</svg>
Judge's Analysis
Player 1's submission effectively captures the concept of bioluminescent jellyfish spiraling around a diver using vibrant colors and dynamic composition.
The neon lights and spiraling motion are well-represented, creating a more engaging and visually appealing scene.
In contrast, Player 2's image lacks the same level of creativity and dynamism, appearing more static and simplistic.
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 umbrella blooming with colorful flowers in the rain"
"Neon jellyfish dance under a disco ball in the deep sea"
"Rainbow koi in a cosmic tea cup"
"Floating city on a single, enormous cloud"
"Floating jellyfish wearing top hats in a cosmic sea"
"A hot air balloon shaped like a giant acorn floating over a bamboo forest"