Creative Challenge
"Bioluminescent jellyfish in a neon geometric style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FF69B4" stop-opacity="1"/>
<stop offset="1" stop-color="#33CCFF" stop-opacity="1"/>
</linearGradient>
<linearGradient id="grad2" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFC67D" stop-opacity="1"/>
<stop offset="1" stop-color="#8BC34A" stop-opacity="1"/>
</linearGradient>
<pattern id="pat1" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#FFFFFF" opacity="0.2"/>
<circle cx="5" cy="5" r="2" fill="#FFFFFF" opacity="0.5"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#212121"/>
<g transform="translate(150, 150)">
<g transform="rotate(45)">
<path d="M 0 0 L 50 0 L 50 50 L 0 50 Z" fill="url(#grad1)"/>
<path d="M 0 0 L -50 0 L -50 -50 L 0 -50 Z" fill="url(#grad2)"/>
<path d="M 0 0 L 50 50 L -50 50 L -50 -50 L 50 -50 Z" fill="url(#pat1)"/>
</g>
<g transform="rotate(-45)">
<path d="M 0 0 L 50 0 L 50 50 L 0 50 Z" fill="url(#grad2)"/>
<path d="M 0 0 L -50 0 L -50 -50 L 0 -50 Z" fill="url(#grad1)"/>
<path d="M 0 0 L 50 50 L -50 50 L -50 -50 L 50 -50 Z" fill="url(#pat1)"/>
</g>
<circle cx="0" cy="0" r="20" fill="#FFFFFF" opacity="0.5"/>
<circle cx="0" cy="0" r="10" fill="#33CCFF" opacity="0.8"/>
</g>
<g transform="translate(100, 100)">
<path d="M 0 0 L 20 0 L 20 20 L 0 20 Z" fill="url(#grad1)"/>
<path d="M 0 0 L -20 0 L -20 -20 L 0 -20 Z" fill="url(#grad2)"/>
<circle cx="0" cy="0" r="5" fill="#FFFFFF" opacity="0.5"/>
</g>
<g transform="translate(200, 200)">
<path d="M 0 0 L 20 0 L 20 20 L 0 20 Z" fill="url(#grad2)"/>
<path d="M 0 0 L -20 0 L -20 -20 L 0 -20 Z" fill="url(#grad1)"/>
<circle cx="0" cy="0" r="5" fill="#FFFFFF" opacity="0.5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(58,183,200);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(29,53,105);stop-opacity:0" />
</radialGradient>
<linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(209,65,98);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(243,212,150);stop-opacity:0" />
</linearGradient>
<pattern id="wavePattern" x="0" y="0" width=".1" height=".1" patternContentUnits="objectBoundingBox">
<path d="M0,1 Q0.25,0.8 0.5,1 T1,1" fill="none" stroke="rgb(69,130,203)" stroke-width="0.05"/>
</pattern>
</defs>
<!-- Main Body -->
<ellipse cx="150" cy="120" rx="80" ry="40" fill="url(#jellyGradient)" stroke="rgb(247,238,173)" stroke-width="2"/>
<!-- Geometric Wave Pattern -->
<rect x="70" y="90" width="160" height="60" fill="url(#wavePattern)"/>
<!-- Tentacles -->
<path d="M150 160 C140 200, 120 250, 80 280" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
<path d="M150 160 C160 200, 180 250, 220 280" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
<path d="M140 160 C130 200, 110 250, 70 290" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
<path d="M160 160 C170 210, 190 260, 230 290" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
<path d="M138 160 C150 200, 170 250, 210 280" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
<!-- Star-like Sparkles -->
<circle cx="90" cy="100" r="3" fill="rgb(220,220,250)" opacity="0.8"/>
<circle cx="180" cy="80" r="2" fill="rgb(220,220,250)" opacity="0.8"/>
<circle cx="210" cy="150" r="3" fill="rgb(220,220,250)" opacity="0.8"/>
<circle cx="120" cy="160" r="2" fill="rgb(220,220,250)" opacity="0.8"/>
<!-- Neon Glows -->
<filter id="neonGlow">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<ellipse cx="150" cy="120" rx="80" ry="40" fill="url(#jellyGradient)" opacity="0.5" filter="url(#neonGlow)"/>
</svg>
Judge's Analysis
Player 2's submission better captures the essence of a jellyfish with its round form and flowing tentacles.
The use of neon colors effectively conveys a bioluminescent appearance, which aligns well with the prompt.
Player 1's geometric design is creative but lacks clear representation of a jellyfish, making it less adherent to the theme.
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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Cat soaring on a hoverboard under a glowing moon"