Creative Challenge
"A geometric jellyfish with a lightbulb for a head in a cosmic ocean"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color: #00bfff;"/>
<stop offset="100%" style="stop-color: #0044ff;"/>
</linearGradient>
<radialGradient id="lightGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color: #ffff00;"/>
<stop offset="100%" style="stop-color: #ffcc00;"/>
</radialGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="#ffffff"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<circle cx="150" cy="100" r="30" fill="url(#lightGradient)" stroke="#000000" stroke-width="2"/>
<path d="M150,130 Q120,150 150,180 Q180,150 150,180" fill="#ff69b4" stroke="#000000" stroke-width="2"/>
<path d="M150,130 Q180,150 150,180 Q120,150 150,180" fill="#ff1493" stroke="#000000" stroke-width="2"/>
<path d="M150,130 Q120,170 150,210 Q180,170 150,210" fill="#ff69b4" stroke="#000000" stroke-width="2"/>
<path d="M150,130 Q180,170 150,210 Q120,170 150,210" fill="#ff1493" stroke="#000000" stroke-width="2"/>
<circle cx="120" cy="150" r="20" fill="url(#starPattern)"/>
<circle cx="180" cy="150" r="20" fill="url(#starPattern)"/>
<circle cx="150" cy="170" r="10" fill="url(#starPattern)"/>
<line x1="150" y1="100" x2="150" y2="30" stroke="#000000" stroke-width="2"/>
<line x1="150" y1="100" x2="170" y2="30" stroke="#000000" stroke-width="2"/>
<line x1="150" y1="100" x2="130" y2="30" stroke="#000000" stroke-width="2"/>
<line x1="150" y1="100" x2="190" y2="30" stroke="#000000" stroke-width="2"/>
<line x1="150" y1="100" x2="110" y2="30" stroke="#000000" stroke-width="2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradient for the cosmic ocean background -->
<radialGradient id="cosmicOcean" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#001f3f" />
<stop offset="50%" stop-color="#003f7f" />
<stop offset="100%" stop-color="#007fff" />
</radialGradient>
<!-- Gradient for the lightbulb -->
<linearGradient id="bulbGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#fffacd" />
<stop offset="100%" stop-color="#ffebcd" />
</linearGradient>
<!-- Pattern for geometric jellyfish tentacles -->
<pattern id="tentaclePattern" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0 0 L10 10 M10 0 L0 10" stroke="#fefcea" stroke-width="2" />
</pattern>
<!-- Styles for small stars in the background -->
<style>
.star {
fill: white;
}
</style>
</defs>
<!-- cosmic background -->
<rect width="300" height="300" fill="url(#cosmicOcean)" />
<!-- stars in the cosmic ocean -->
<circle cx="40" cy="80" r="1.5" class="star" />
<circle cx="90" cy="150" r="1" class="star" />
<circle cx="160" cy="40" r="1.2" class="star" />
<circle cx="220" cy="200" r="1.5" class="star" />
<circle cx="280" cy="110" r="1" class="star" />
<circle cx="50" cy="240" r="1" class="star" />
<!-- lightbulb head of the jellyfish -->
<ellipse cx="150" cy="100" rx="20" ry="30" fill="url(#bulbGradient)" stroke="#ffa500" stroke-width="2" />
<!-- filament inside the lightbulb -->
<line x1="150" y1="75" x2="150" y2="125" stroke="#ff4500" stroke-width="2" />
<circle cx="150" cy="90" r="3" fill="#ff4500" />
<!-- geometric body of the jellyfish -->
<polygon points="130,130 170,130 150,170" fill="url(#tentaclePattern)" stroke="#7fffd4" stroke-width="1.5" />
<!-- hanging tentacles -->
<path d="M150,170 Q130,250 140,300" stroke="#7fffd4" stroke-width="1.5" fill="none" />
<path d="M150,170 Q150,250 150,300" stroke="#00ffff" stroke-width="1.5" fill="none" />
<path d="M150,170 Q170,250 160,300" stroke="#7fffd4" stroke-width="1.5" fill="none" />
</svg>
Judge's Analysis
Player 2's image more effectively captures the concept of a 'cosmic ocean' with the use of a deep blue gradient and scattered stars, enhancing the cosmic theme.
The lightbulb is creatively integrated with a geometric design, and the subtle glow adds to the visual appeal.
Player 1's design, while colorful, lacks the atmospheric depth and cosmic context present in Player 2's submission.
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
"A moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"