Creative Challenge
"A tree growing upside down from the sky, roots reaching toward the ground."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="#add8e6" />
<!-- Upside down tree trunk -->
<rect x="140" y="30" width="20" height="100" fill="#8b5a2b" />
<!-- Upside down tree roots reaching down -->
<path d="M150,130 Q140,140 130,150 Q140,160 150,170 Q160,160 170,150 Q160,140 150,130" fill="#8b5a2b" />
<!-- Upside down tree foliage -->
<circle cx="150" cy="120" r="50" fill="#228b22" />
<circle cx="120" cy="100" r="40" fill="#228b22" />
<circle cx="180" cy="110" r="45" fill="#228b22" />
<circle cx="140" cy="160" r="40" fill="#228b22" />
<circle cx="160" cy="160" r="35" fill="#228b22" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="50%" stop-color="#A8D080"/>
<stop offset="100%" stop-color="#654321"/>
</linearGradient>
<radialGradient id="cloudGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="#D0E8FF"/>
</radialGradient>
<linearGradient id="branchGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#A0522D"/>
<stop offset="100%" stop-color="#5B2C06"/>
</linearGradient>
<linearGradient id="trunkGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#8B4513"/>
<stop offset="100%" stop-color="#5B2C06"/>
</linearGradient>
<radialGradient id="leafGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#7CFC00"/>
<stop offset="100%" stop-color="#228B22"/>
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#bgGrad)"/>
<g id="cloud">
<circle cx="120" cy="40" r="20" fill="url(#cloudGrad)" opacity="0.9"/>
<circle cx="180" cy="40" r="20" fill="url(#cloudGrad)" opacity="0.9"/>
<circle cx="150" cy="30" r="25" fill="url(#cloudGrad)" opacity="0.9"/>
<circle cx="150" cy="55" r="22" fill="url(#cloudGrad)" opacity="0.9"/>
</g>
<g id="roots" stroke="url(#branchGrad)" fill="none" stroke-linecap="round">
<path d="M130,55 C140,100 120,150 135,180" stroke-width="4"/>
<path d="M170,55 C160,100 180,150 165,180" stroke-width="4"/>
<path d="M150,50 C150,120 110,160 100,180" stroke-width="3"/>
<path d="M150,50 C150,120 190,160 200,180" stroke-width="3"/>
<path d="M140,55 C135,110 145,160 140,180" stroke-width="2"/>
<path d="M160,55 C165,110 155,160 160,180" stroke-width="2"/>
</g>
<path d="M150,180 C148,205 152,235 150,250" fill="none" stroke="url(#trunkGrad)" stroke-width="12" stroke-linecap="round"/>
<path d="M0,300 L0,280 Q150,260 300,280 L300,300 Z" fill="#5BA84A" opacity="0.7"/>
<g id="canopy">
<circle cx="150" cy="260" r="20" fill="url(#leafGrad)" opacity="0.9"/>
<circle cx="130" cy="275" r="16" fill="url(#leafGrad)" opacity="0.9"/>
<circle cx="170" cy="275" r="16" fill="url(#leafGrad)" opacity="0.9"/>
<circle cx="140" cy="245" r="14" fill="url(#leafGrad)" opacity="0.9"/>
<circle cx="160" cy="245" r="14" fill="url(#leafGrad)" opacity="0.9"/>
</g>
<g fill="#FFFFFF" opacity="0.8">
<circle cx="50" cy="15" r="2"/>
<circle cx="250" cy="25" r="1.5"/>
<circle cx="200" cy="10" r="2.5"/>
<circle cx="80" cy="30" r="1.8"/>
</g>
</svg>
Judge's Analysis
Player 2's submission is more creative and adheres better to the prompt.
The tree is clearly growing upside down with roots extending from a cloud, which aligns with the idea of the tree originating from the sky.
In contrast, Player 1's submission lacks clarity and detail, making it less visually distinct and 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
"Pirate ship in a bottle during a storm."
"Robot watering a giant carnivorous plant under a glowing moon."
"Two giraffes tangled in a single scarf on a windy mountaintop."
"Cat astronaut planting a flag on a cheese moon."