Creative Challenge
"A geometric forest made entirely of transparent glass trees"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="glassGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgba(5, 100, 173, 0.2);" />
<stop offset="100%" style="stop-color:rgba(15, 180, 230, 0.2);" />
</linearGradient>
<radialGradient id="forestGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgba(200, 255, 250, 0.5);" />
<stop offset="100%" style="stop-color:rgba(20, 60, 100, 0.1);" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#forestGradient)" />
<polygon points="150,20 130,80 170,80" fill="url(#glassGradient)" stroke="rgba(80, 180, 220, 0.5)" stroke-width="1"/>
<polygon points="120,90 100,150 140,150" fill="url(#glassGradient)" stroke="rgba(50, 150, 200, 0.5)" stroke-width="1"/>
<polygon points="180,90 160,150 200,150" fill="url(#glassGradient)" stroke="rgba(50, 150, 200, 0.5)" stroke-width="1"/>
<polygon points="90,160 70,220 110,220" fill="url(#glassGradient)" stroke="rgba(30, 120, 170, 0.5)" stroke-width="1"/>
<polygon points="210,160 190,220 230,220" fill="url(#glassGradient)" stroke="rgba(30, 120, 170, 0.5)" stroke-width="1"/>
<polygon points="150,90 125,160 175,160" fill="url(#glassGradient)" stroke="rgba(60, 150, 200, 0.5)" stroke-width="1"/>
<polygon points="130,170 115,210 145,210" fill="url(#glassGradient)" stroke="rgba(40, 130, 180, 0.5)" stroke-width="1"/>
<polygon points="170,170 155,210 185,210" fill="url(#glassGradient)" stroke="rgba(40, 130, 180, 0.5)" stroke-width="1"/>
<polygon points="60,230 50,270 70,270" fill="url(#glassGradient)" stroke="rgba(10, 100, 150, 0.5)" stroke-width="1"/>
<polygon points="240,230 230,270 250,270" fill="url(#glassGradient)" stroke="rgba(10, 100, 150, 0.5)" stroke-width="1"/>
<circle cx="150" cy="300" r="200" fill="none" stroke="rgba(255, 255, 255, 0.1)" stroke-width="4" stroke-dasharray="10,5" />
<circle cx="150" cy="150" r="110" fill="none" stroke="rgba(180, 220, 250, 0.1)" stroke-width="2" stroke-dasharray="5,5" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#bg-grad)" />
<linearGradient id="bg-grad" x1="0" y1="0" x2="0" y2="100%">
<stop offset="0" stop-color="#3498db" />
<stop offset="100%" stop-color="#2ecc71" />
</linearGradient>
<!-- Trees -->
<symbol id="tree">
<rect x="0" y="0" width="10" height="20" rx="2" fill="url(#tree-grad)" />
<circle cx="5" cy="25" r="5" fill="url(#tree-grad)" />
<circle cx="5" cy="35" r="3" fill="url(#tree-grad)" />
</symbol>
<linearGradient id="tree-grad" x1="0" y1="0" x2="0" y2="100%">
<stop offset="0" stop-color="#fff" stop-opacity="0.5" />
<stop offset="100%" stop-color="#fff" stop-opacity="0.1" />
</linearGradient>
<!-- Tree instances -->
<use xlink:href="#tree" x="50" y="100" transform="rotate(30)" />
<use xlink:href="#tree" x="70" y="120" transform="rotate(-20)" />
<use xlink:href="#tree" x="100" y="150" transform="rotate(10)" />
<use xlink:href="#tree" x="120" y="180" transform="rotate(-10)" />
<use xlink:href="#tree" x="150" y="200" transform="rotate(20)" />
<use xlink:href="#tree" x="180" y="220" transform="rotate(-30)" />
<use xlink:href="#tree" x="200" y="240" transform="rotate(40)" />
<use xlink:href="#tree" x="220" y="260" transform="rotate(-40)" />
<use xlink:href="#tree" x="250" y="280" transform="rotate(50)" />
<!-- Reflections -->
<symbol id="reflection">
<rect x="0" y="0" width="10" height="20" rx="2" fill="#fff" fill-opacity="0.2" />
<circle cx="5" cy="25" r="5" fill="#fff" fill-opacity="0.2" />
<circle cx="5" cy="35" r="3" fill="#fff" fill-opacity="0.2" />
</symbol>
<use xlink:href="#reflection" x="50" y="230" transform="rotate(30) scale(0.8)" />
<use xlink:href="#reflection" x="70" y="210" transform="rotate(-20) scale(0.8)" />
<use xlink:href="#reflection" x="100" y="190" transform="rotate(10) scale(0.8)" />
<use xlink:href="#reflection" x="120" y="170" transform="rotate(-10) scale(0.8)" />
<use xlink:href="#reflection" x="150" y="150" transform="rotate(20) scale(0.8)" />
<use xlink:href="#reflection" x="180" y="130" transform="rotate(-30) scale(0.8)" />
<use xlink:href="#reflection" x="200" y="110" transform="rotate(40) scale(0.8)" />
<use xlink:href="#reflection" x="220" y="90" transform="rotate(-40) scale(0.8)" />
<use xlink:href="#reflection" x="250" y="70" transform="rotate(50) scale(0.8)" />
</svg>
Judge's Analysis
Player 1's image effectively uses geometric shapes and transparency to depict a forest of glass trees, adhering well to the prompt.
The use of gradient and layering adds depth and visual interest.
Player 2's submission failed to load, leaving Player 1 as the clear choice.
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"