Creative Challenge
"Bioluminescent jellyfish floating in a forest"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="glow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#7af7ff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#2b4d98" stop-opacity="0"/>
</radialGradient>
<filter id="blur">
<feGaussianBlur stdDeviation="2"/>
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#0a1428"/>
<!-- Trees -->
<path d="M20,300 L40,180 L60,300 Z" fill="#1a2b1a"/>
<path d="M80,300 L100,150 L120,300 Z" fill="#243524"/>
<path d="M140,300 L160,200 L180,300 Z" fill="#1a2b1a"/>
<path d="M200,300 L220,160 L240,300 Z" fill="#243524"/>
<path d="M260,300 L280,190 L300,300 Z" fill="#1a2b1a"/>
<!-- Jellyfish body -->
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="40" fill="#4287f5" opacity="0.6"/>
<path d="M-40,0 Q0,60 40,0" fill="#4287f5" opacity="0.4"/>
<!-- Tentacles -->
<g opacity="0.7">
<path d="M-30,0 Q-20,80 -40,120" stroke="#7af7ff" fill="none" stroke-width="2">
<animate attributeName="d" dur="3s" repeatCount="indefinite"
values="M-30,0 Q-20,80 -40,120;M-30,0 Q-40,80 -30,120;M-30,0 Q-20,80 -40,120"/>
</path>
<path d="M-10,0 Q0,90 -20,130" stroke="#7af7ff" fill="none" stroke-width="2">
<animate attributeName="d" dur="4s" repeatCount="indefinite"
values="M-10,0 Q0,90 -20,130;M-10,0 Q-20,90 0,130;M-10,0 Q0,90 -20,130"/>
</path>
<path d="M10,0 Q20,85 0,125" stroke="#7af7ff" fill="none" stroke-width="2">
<animate attributeName="d" dur="3.5s" repeatCount="indefinite"
values="M10,0 Q20,85 0,125;M10,0 Q0,85 20,125;M10,0 Q20,85 0,125"/>
</path>
<path d="M30,0 Q40,75 20,115" stroke="#7af7ff" fill="none" stroke-width="2">
<animate attributeName="d" dur="4.5s" repeatCount="indefinite"
values="M30,0 Q40,75 20,115;M30,0 Q20,75 40,115;M30,0 Q40,75 20,115"/>
</path>
</g>
<!-- Bioluminescent glow -->
<circle cx="0" cy="0" r="60" fill="url(#glow)" filter="url(#blur)">
<animate attributeName="opacity" dur="2s" repeatCount="indefinite"
values="0.6;0.3;0.6"/>
</circle>
</g>
<!-- Floating particles -->
<g fill="#7af7ff" opacity="0.5">
<circle cx="50" cy="100" r="2">
<animate attributeName="cy" dur="4s" repeatCount="indefinite" values="100;80;100"/>
</circle>
<circle cx="200" cy="150" r="2">
<animate attributeName="cy" dur="3s" repeatCount="indefinite" values="150;130;150"/>
</circle>
<circle cx="250" cy="80" r="2">
<animate attributeName="cy" dur="5s" repeatCount="indefinite" values="80;60;80"/>
</circle>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - Forest -->
<rect x="0" y="0" width="300" height="300" fill="#2E8B57" />
<!-- Stars in the night sky -->
<circle cx="30" cy="50" r="1" fill="#FFF" />
<circle cx="60" cy="70" r="1" fill="#FFF" />
<circle cx="90" cy="40" r="1" fill="#FFF" />
<circle cx="120" cy="80" r="1" fill="#FFF" />
<!-- Bioluminescent jellyfish -->
<circle cx="150" cy="150" r="40" fill="#00FFFF" />
<circle cx="120" cy="130" r="25" fill="#9ACD32" />
<circle cx="180" cy="130" r="25" fill="#9ACD32" />
<circle cx="140" cy="160" r="15" fill="#00FFFF" />
<circle cx="160" cy="160" r="15" fill="#00FFFF" />
<!-- Glow from the jellyfish -->
<circle cx="150" cy="150" r="80" fill="#00FFFF" opacity="0.3" />
<circle cx="150" cy="150" r="120" fill="#00FFFF" opacity="0.2" />
</svg>
Judge's Analysis
Player 1's image effectively captures the concept of a bioluminescent jellyfish with its glowing features and tentacle-like lines, set against a dark forest backdrop that evokes a sense of mystery.
The composition is balanced and the glowing effect enhances the visual appeal.
Player 2's image lacks clear representation of the prompt, with abstract shapes that do not convincingly suggest a jellyfish or forest setting.
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
"Dancing cactus with maracas under a disco ball"
"Frog in a tuxedo playing a tiny trumpet under a starry sky"
"Giraffe with a fishbowl necktie"
"A giraffe peeking through a keyhole into a treasure-filled room"
"Lemon-shaped UFO over a desert cactus"
"A surreal garden with levitating teacups and luminous jellyfish"