Creative Challenge
"A jellyfish cityscape, buildings glowing like bioluminescent tentacles"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="bg" cx="150" cy="300" r="350" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#001220"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<rect width="300" height="300" fill="url(#bg)"/>
<g fill="none" stroke="white" stroke-opacity=".2">
<line x1="0" y1="280" x2="300" y2="280" stroke-width="1"/>
</g>
<g filter="url(#glow)">
<g opacity=".8">
<path d="M40 100c0-30 20-50 50-50s60 25 55 55-20 50-55 50c-25 15-70-5-40-40z" fill="url(#grad1)">
<animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="0 -10" dur="4s" repeatCount="indefinite"/>
</path>
<radialGradient id="grad1" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#8A2BE2" stop-opacity="1"/>
<stop offset="100%" stop-color="#4B0082" stop-opacity="1"/>
</radialGradient>
<path d="M100 80c0-30 5-55 55-55s65 30 50 65c0 5-15 60-60 60-10 0-50-10-50-50z" fill="url(#grad2)">
<animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="5 -15" dur="5s" repeatCount="indefinite"/>
</path>
<radialGradient id="grad2" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#00BFFF" stop-opacity="1"/>
<stop offset="100%" stop-color="#1E90FF" stop-opacity="1"/>
</radialGradient>
<path d="M170 140c-20-40 0-70 40-70s55 25 50 65c5 45-10 70-50 70-20 10 -55-5 -55-45z" fill="url(#grad3)">
<animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="-5 -5" dur="3s" repeatCount="indefinite"/>
</path>
<radialGradient id="grad3" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#90EE90" stop-opacity="1"/>
<stop offset="100%" stop-color="#008000" stop-opacity="1"/>
</radialGradient>
<polyline points="55,150 55,280" stroke="#90EE90" stroke-width="6" stroke-linecap="round" stroke-opacity=".5"/>
<polyline points="105,120 105,280" stroke="#00BFFF" stroke-width="10" stroke-linecap="round" stroke-opacity=".5"/>
<polyline points="180,180 180,280" stroke="#8A2BE2" stroke-width="12" stroke-linecap="round" stroke-opacity=".5"/>
<polyline points="250,160 250,280" stroke="#DA70D6" stroke-width="8" stroke-linecap="round" stroke-opacity=".5"/>
<path d="M230 120c-5-35 10-55 50-55s50 25 50 60c-10 35-10 70-60 65-40-5-50 -20 -40-60z" fill="url(#grad4)">
<animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="0 -15" dur="6s" repeatCount="indefinite"/>
</path> <radialGradient id="grad4" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#DA70D6" stop-opacity="1"/>
<stop offset="100%" stop-color="#800080" stop-opacity="1"/>
</radialGradient>
</g>
</g>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<rect x="0" y="0" width="300" height="300" fill="#05090b"/>
<circle cx="150" cy="100" r="60" fill="#0a7181"/>
<circle cx="120" cy="50" r="80" fill="#0f91a0"/>
<circle cx="180" cy="50" r="70" fill="#0a7181"/>
<circle cx="150" cy="150" r="60" fill="#0f91a0"/>
<circle cx="120" cy="200" r="80" fill="#0a7181"/>
<circle cx="180" cy="200" r="70" fill="#0f91a0"/>
<rect x="130" y="250" width="40" height="50" fill="#223a46"/>
<rect x="140" y="200" width="20" height="20" fill="#3d3d3d"/>
<circle cx="150" cy="250" r="10" fill="#0a7181"/>
</svg>
Judge's Analysis
Player 1's submission creatively utilizes vibrant colors and glowing effects to depict a jellyfish cityscape, effectively capturing the bioluminescent theme.
The composition is visually appealing and aligns well with the prompt, using color gradients to suggest the glow of tentacles.
In contrast, Player 2's image lacks the dynamic visual elements and glowing quality needed to fully embody the concept.
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
"Whale floating in a teacup on a starry night sky"
"An owl wearing a monocle, reading a newspaper under a mushroom umbrella"
"Surreal cityscape inside a giant fishbowl"
"Frog playing a grand piano under a starry sky"
"Octopus juggling planets under a starlit ocean"
"Floating cityscape on a jellyfish's back, neon lights glow against a starry sky"