Creative Challenge
"Bioluminescent jellyfish wearing tiny top hats"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
</linearGradient>
<pattern id="pattern1" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="url(#grad2)" />
</pattern>
</defs>
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="70" fill="url(#grad1)" />
<circle cx="0" cy="0" r="50" fill="url(#pattern1)" />
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
<circle cx="0" cy="0" r="10" fill="white" />
<path d="M-40,20 L40,20 Q0,40 0,80 L0,100 L0,80 Q0,40 -40,20 Z" fill="white" stroke="black" stroke-width="2" />
<path d="M-40,20 L40,20 Q0,40 0,80 L0,100 L0,80 Q0,40 40,20 Z" fill="white" stroke="black" stroke-width="2" />
<path d="M-40,20 L40,20 Q0,40 0,80 L0,100 L0,80 Q0,40 -40,20 Z" fill="url(#grad2)" stroke="black" stroke-width="2" />
<path d="M-40,20 L40,20 Q0,40 0,80 L0,100 L0,80 Q0,40 40,20 Z" fill="url(#grad2)" stroke="black" stroke-width="2" />
<circle cx="20" cy="-50" r="10" fill="white" stroke="black" stroke-width="2" />
<circle cx="-20" cy="-50" r="10" fill="white" stroke="black" stroke-width="2" />
<circle cx="20" cy="-50" r="5" fill="black" />
<circle cx="-20" cy="-50" r="5" fill="black" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="jellyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00ffcc; stop-opacity:1" />
<stop offset="100%" style="stop-color:#0072ff; stop-opacity:1" />
</linearGradient>
<radialGradient id="glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#00ffcc; stop-opacity:0" />
</radialGradient>
<pattern id="topHatPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="black" />
<circle cx="5" cy="5" r="3" fill="gray" />
</pattern>
</defs>
<g>
<ellipse cx="150" cy="220" rx="60" ry="40" fill="url(#jellyGradient)" filter="url(#glow)" />
<path d="M130 220 Q110 200 130 180 Q150 200 130 220" fill="url(#jellyGradient)" />
<path d="M170 220 Q190 200 170 180 Q150 200 170 220" fill="url(#jellyGradient)" />
<ellipse cx="150" cy="190" rx="40" ry="20" fill="url(#jellyGradient)" />
<ellipse cx="150" cy="180" rx="20" ry="10" fill="url(#jellyGradient)" />
<rect x="140" y="160" width="20" height="6" fill="#000000" />
<path d="M130 160 L140 154 L130 150 L130 160 Z" fill="black" />
<path d="M170 160 L160 154 L170 150 L170 160 Z" fill="black" />
<circle cx="130" cy="125" r="5" fill="white" opacity="0.8" />
<circle cx="170" cy="125" r="5" fill="white" opacity="0.8" />
<path d="M150 220 C120 250 90 230 75 230 C70 190 80 170 150 160 C220 170 230 190 225 230 C210 230 180 250 150 220 Z" fill="blue" opacity="0.3" />
<text x="50" y="280" font-family="Verdana" font-size="15" fill="#fff" opacity="0.6">Bioluminescent Jellyfish</text>
</g>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt with a clear depiction of a jellyfish wearing a distinct top hat.
The use of gradient colors effectively captures the bioluminescent quality, and the composition is visually appealing and technically sound.
Player 1's image, while creative, lacks clarity and the specific elements of the prompt are less distinguishable.
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
"Cat in a spacesuit floating above a moonlit ocean"
"Lonely penguin on a flamingo float in a desert oasis"
"Chameleon blending into a giant cosmic snail shell"
"A jellyfish cityscape at sunset"
"Giraffe in a scuba suit diving for coral in a colorful reef"
"Giraffe juggling planets in a cosmic circus ring"