Creative Challenge
"A geometric lion made of interlocking translucent glass shapes"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(150,150)">
<!-- Main Body -->
<path d="M-50,-50 L50,-50 L50,50 L-50,50 Z"
fill="url(#bodyGradient)"
stroke="#4a4a4a"
stroke-width="2"/>
<!-- Mane -->
<path d="M-60,-60 Q-40,-70 0,-60 Q40,-70 60,-60 L60,-60 Q40,-50 0,-40 Q-40,-50 -60,-60 Z"
fill="url(#maneGradient)"
stroke="#3a5a8a"
stroke-width="3"/>
<!-- Head Details -->
<rect x="-20" y="-40" width="40" height="20"
fill="url(#faceGradient)"
rx="10"/>
<!-- Nose -->
<circle cx="0" cy="-25" r="5"
fill="#666"
stroke="#444"
stroke-width="1"/>
<!-- Mouth -->
<path d="M-10,-30 L10,-30"
stroke="#666"
stroke-width="3"/>
<!-- Legs -->
<rect x="-15" y="30" width="30" height="40"
fill="url(#legGradient)"
rx="5"/>
<!-- Arm -->
<rect x="-30" y="-20" width="15" height="40"
fill="url(#armGradient)"
rx="5"/>
<!-- Tail -->
<path d="M40,50 Q60,70 80,50 L80,50 Q60,30 40,50 Z"
fill="url(#tailGradient)"
stroke="#3a5a8a"
stroke-width="2"/>
<!-- Claws -->
<path d="M-15,40 L-10,45 L-5,40"
fill="#666"/>
<!-- Gradient Definitions -->
<defs>
<linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8ab1d1" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#668da8" stop-opacity="0.6"/>
</linearGradient>
<linearGradient id="maneGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffd700" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ff9900" stop-opacity="0.6"/>
</linearGradient>
<linearGradient id="faceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#a0d8ef" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#66a6d8" stop-opacity="0.6"/>
</linearGradient>
<linearGradient id="legGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8ab1d1" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#668da8" stop-opacity="0.6"/>
</linearGradient>
<linearGradient id="armGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8ab1d1" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#668da8" stop-opacity="0.6"/>
</linearGradient>
<linearGradient id="tailGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8ab1d1" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#668da8" stop-opacity="0.6"/>
</linearGradient>
</defs>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="glassGradient1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#1a8cff;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#00bfff;stop-opacity:0.4"/>
</linearGradient>
<linearGradient id="glassGradient2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00bfff;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#1a8cff;stop-opacity:0.4"/>
</linearGradient>
<path id="glassShape1" d="M60 30 L90 60 Q120 90 90 120 L60 90 Q30 90 0 60 L30 30 Q30 0 60 0 Z"/>
<path id="glassShape2" d="M120 30 L150 60 Q180 90 150 120 L120 90 Q90 90 60 60 L90 30 Q90 0 120 0 Z"/>
</defs>
<rect width="300" height="300" fill="url(#linearGradient)" fill-opacity="0.1"/>
<g transform="translate(50,50)">
<!-- Lion's body -->
<path d="M100 100 L150 130 Q200 140 180 160 L150 190 Q120 200 100 180 L80 160 Q60 140 40 130 L100 100 Z"
fill="url(#glassGradient1)" opacity="0.7"/>
<!-- Interlocking glass pieces -->
<use href="#glassShape1" x="0" y="0" fill="url(#glassGradient2)" opacity="0.6"/>
<use href="#glassShape2" x="60" y="0" fill="url(#glassGradient2)" opacity="0.6"/>
<use href="#glassShape1" x="0" y="60" fill="url(#glassGradient1)" opacity="0.6"/>
<use href="#glassShape2" x="60" y="60" fill="url(#glassGradient1)" opacity="0.6"/>
<!-- Mane -->
<circle cx="150" cy="130" r="40" fill="url(#glassGradient2)" opacity="0.5"/>
<circle cx="150" cy="130" r="30" fill="url(#glassGradient1)" opacity="0.5"/>
<circle cx="150" cy="130" r="20" fill="url(#glassGradient2)" opacity="0.5"/>
<!-- Face details -->
<circle cx="120" cy="100" r="8" fill="url(#glassGradient2)"/>
<circle cx="180" cy="100" r="8" fill="url(#glassGradient2)"/>
<path d="M150 110 Q145 105 140 100" stroke="#000" stroke-width="2" opacity="0.7"/>
<path d="M140 100 L160 100 L150 110 Z" fill="#000" opacity="0.7"/>
</g>
<!-- Tail -->
<path d="M250 150 Q280 160 280 200 L260 220 Q240 220 220 200 L200 180 Q180 160 150 150 Z"
fill="url(#glassGradient1)" opacity="0.6"/>
</svg>
Judge's Analysis
Player 2's image creatively utilizes translucent glass-like shapes to form a more abstract and dynamic representation of a lion, adhering closely to the prompt.
The use of interlocking shapes and the translucent effect is more pronounced, adding to the visual appeal and technical quality of the composition.
Player 1's image, while geometric, lacks the complexity and translucency required by 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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"