Creative Challenge
"A geometric whale made of floating translucent polygons in a starry sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry Sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#starry-sky)" />
<linearGradient id="starry-sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#212121" />
<stop offset="0.5" stop-color="#343434" />
<stop offset="1" stop-color="#4d4d4d" />
</linearGradient>
<g id="stars">
<circle cx="50" cy="50" r="1" fill="#fff" />
<circle cx="100" cy="75" r="1" fill="#fff" />
<circle cx="150" cy="100" r="1" fill="#fff" />
<circle cx="200" cy="125" r="1" fill="#fff" />
<circle cx="250" cy="150" r="1" fill="#fff" />
<circle cx="50" cy="200" r="1" fill="#fff" />
<circle cx="100" cy="225" r="1" fill="#fff" />
<circle cx="150" cy="250" r="1" fill="#fff" />
<circle cx="200" cy="275" r="1" fill="#fff" />
<circle cx="250" cy="200" r="1" fill="#fff" />
</g>
<!-- Geometric Whale -->
<g id="whale" transform="translate(150, 150)">
<!-- Body -->
<polygon points="0,0 20,0 30,20 40,0 60,0 50,20 40,40 30,60 20,40 10,20 0,40" fill="url(#body-gradient)" />
<linearGradient id="body-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#66d9ef" />
<stop offset="0.5" stop-color="#33cccc" />
<stop offset="1" stop-color="#0099cc" />
</linearGradient>
<!-- Tail -->
<polygon points="60,0 70,20 80,0 90,20 100,0 110,20 100,40 90,60 80,40 70,60 60,40" fill="url(#tail-gradient)" />
<linearGradient id="tail-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#33cccc" />
<stop offset="0.5" stop-color="#0099cc" />
<stop offset="1" stop-color="#0066aa" />
</linearGradient>
<!-- Fins -->
<polygon points="20,40 30,60 40,40 50,60" fill="url(#fin-gradient)" />
<polygon points="80,40 90,60 100,40 110,60" fill="url(#fin-gradient)" />
<linearGradient id="fin-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#0099cc" />
<stop offset="0.5" stop-color="#0066aa" />
<stop offset="1" stop-color="#003366" />
</linearGradient>
<!-- Polygons -->
<g id="polygons">
<polygon points="10,20 20,40 30,20 40,40" fill="#44ffff" opacity="0.5" />
<polygon points="40,40 50,60 60,40 70,60" fill="#44ffff" opacity="0.5" />
<polygon points="70,60 80,80 90,60 100,80" fill="#44ffff" opacity="0.5" />
<polygon points="100,80 110,100 120,80 130,100" fill="#44ffff" opacity="0.5" />
<polygon points="130,100 140,120 150,100 160,120" fill="#44ffff" opacity="0.5" />
<polygon points="160,120 170,140 180,120 190,140" fill="#44ffff" opacity="0.5" />
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry sky background -->
<rect width="300" height="300" fill="black" />
<circle cx="150" cy="150" r="2" fill="white" />
<circle cx="50" cy="100" r="1.5" fill="white" />
<circle cx="200" cy="50" r="1" fill="white" />
<!-- Geometric whale made of floating polygons -->
<polygon points="150,50 100,200 200,200" fill="rgba(0, 0, 255, 0.7)" />
<polygon points="130,70 80,170 180,170" fill="rgba(0, 0, 255, 0.5)" />
<polygon points="155,80 130,150 180,150" fill="rgba(0, 0, 255, 0.6)" />
<polygon points="160,120 120,140 170,140" fill="rgba(0, 0, 255, 0.8)" />
<polygon points="140,100 110,130 160,130" fill="rgba(0, 0, 255, 0.4)" />
</svg>
Judge's Analysis
Player 1's image effectively represents a whale using geometric, translucent polygons, adhering closely to the prompt.
The use of gradient colors adds depth and creates a visually appealing composition against the starry background.
Player 2's submission, while creative, lacks the recognizable form of a whale and doesn't use translucence as effectively.
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
"An octopus riding a unicycle on a rainbow"
"Glowing jellyfish in a sunset sky"
"Juggling octopus under starry sky"
"Socks hanging like holiday stockings on a giant cactus"
"Melting clock dripping over a sunflower"
"A mythical creature juggling planets under a neon night sky"