Creative Challenge
"A giraffe wearing a vintage diving helmet in a deep-sea coral garden"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="oceanGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(0,128,255); stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,0,139); stop-opacity:1" />
</radialGradient>
<pattern id="giraffeSpots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="saddlebrown" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#oceanGradient)" />
<g transform="translate(150,160)">
<ellipse rx="40" ry="60" fill="yellow" style="fill:url(#giraffeSpots); stroke:burlywood; stroke-width:3;" />
<path d="M -5,30 Q 0,40 5,30" stroke="burlywood" stroke-width="5" fill="none" />
<path d="M -15,-35 Q 0,-50 15,-35" stroke="sienna" stroke-width="5" fill="none" />
<ellipse cx="-20" cy="-50" rx="5" ry="10" fill="burlywood" />
<ellipse cx="20" cy="-50" rx="5" ry="10" fill="burlywood" />
</g>
<g transform="translate(150,100)">
<circle cx="0" cy="0" r="35" fill="peru" stroke="saddlebrown" stroke-width="5" />
<circle cx="0" cy="0" r="26" fill="#C0C0C0" stroke="dimgray" stroke-width="2" />
<circle cx="0" cy="0" r="18" fill="lightblue" />
<rect x="-5" y="-40" width="10" height="10" fill="peru" />
<rect x="-30" y="-5" width="10" height="10" fill="peru" />
<rect x="20" y="-5" width="10" height="10" fill="peru" />
<rect x="-5" y="30" width="10" height="10" fill="peru" />
</g>
<g>
<path d="M250,230 C240,220 260,210 250,200 S240,240 230,250" fill="indianred" />
<circle cx="250" cy="200" r="10" fill="palevioletred" />
<path d="M50,230 C40,220 60,210 50,200 S40,240 30,250" fill="darkseagreen" />
<circle cx="50" cy="200" r="10" fill="lightseagreen" />
</g>
<g>
<path d="M70,250 Q75,230 90,270 Q105,230 110,250" stroke="coral" stroke-width="2" fill="none" />
<circle cx="80" cy="250" r="8" fill="sandybrown" />
<circle cx="100" cy="250" r="8" fill="sandybrown" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffeGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#EDC74A;stop-opacity:1" />
<stop offset="100%" style="stop-color:#7E5B1D;stop-opacity:1" />
</linearGradient>
<radialGradient id="coralGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FBC2D4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF66B2;stop-opacity:1" />
</radialGradient>
<pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="#AEEEEE" />
</pattern>
</defs>
<rect width="300" height="300" fill="#1E3A78" />
<g transform="translate(150,200)">
<path d="M-30,-80 C-70,-120 -60,-180 0,-180 C60,-180 70,-120 30,-80" fill="url(#giraffeGradient)" />
<path d="M-15,-80 Q20,-60 0,-40 Q10,-20 -15,-10 Z" fill="#FFD700" />
<circle cx="0" cy="-80" r="35" fill="none" stroke="#8B4513" stroke-width="5" />
<circle cx="0" cy="-80" r="25" fill="#A9A9A9" />
<path d="M-10,-85 Q0,-98 10,-85" fill="none" stroke="#8B4513" stroke-width="2" />
<path d="M-40,-60 Q-50,-50 -45,-45 Q-40,-40 -35,-45 Q-30,-50 -40,-60" fill="#8A8D8F" />
</g>
<g>
<g fill="url(#coralGradient)">
<path d="M50,100 C70,80 90,90 110,100 C130,110 170,90 160,120 C150,150 100,140 80,130 C60,120 40,130 50,100 Z" />
<path d="M30,130 C50,110 70,120 80,130 C90,140 120,125 110,150 C100,175 60,165 40,140 C20,115 25,120 30,130 Z" />
</g>
<g fill="url(#bubblePattern)">
<circle cx="70" cy="140" r="5" />
<circle cx="90" cy="100" r="4" />
<circle cx="50" cy="120" r="3" />
</g>
</g>
</svg>
Judge's Analysis
Player 1's submission creatively integrates the vintage diving helmet with the giraffe's silhouette, and includes elements resembling a coral garden.
The composition is more cohesive and adheres better to the prompt.
Player 2's image, while having a unique style, lacks clear representation of the giraffe and the underwater environment, making it less aligned with the prompt.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"