Creative Challenge
"A tree growing upside down, its roots reaching for the sky."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="0%" r="100%">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="70%" stop-color="#4169E1"/>
<stop offset="100%" stop-color="#191970"/>
</radialGradient>
<linearGradient id="trunkGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#8B4513"/>
<stop offset="50%" stop-color="#A0522D"/>
<stop offset="100%" stop-color="#654321"/>
</linearGradient>
<linearGradient id="rootGradient" x1="0%" y1="100%" x2="0%" y2="0%">
<stop offset="0%" stop-color="#8B4513"/>
<stop offset="50%" stop-color="#DEB887"/>
<stop offset="100%" stop-color="#F0E68C"/>
</linearGradient>
<radialGradient id="canopyGradient" cx="50%" cy="50%" r="60%">
<stop offset="0%" stop-color="#228B22"/>
<stop offset="60%" stop-color="#006400"/>
<stop offset="100%" stop-color="#2F4F2F"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Sky background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Floating clouds -->
<ellipse cx="70" cy="40" rx="25" ry="12" fill="rgba(255,255,255,0.7)"/>
<ellipse cx="85" cy="35" rx="20" ry="10" fill="rgba(255,255,255,0.6)"/>
<ellipse cx="220" cy="60" rx="30" ry="15" fill="rgba(255,255,255,0.5)"/>
<!-- Main trunk (at top) -->
<rect x="140" y="50" width="20" height="40" fill="url(#trunkGradient)" rx="10"/>
<!-- Root system extending upward -->
<!-- Central root -->
<path d="M150 50 Q150 30 145 10" stroke="url(#rootGradient)" stroke-width="8" fill="none" stroke-linecap="round"/>
<path d="M150 50 Q155 25 160 5" stroke="url(#rootGradient)" stroke-width="6" fill="none" stroke-linecap="round"/>
<!-- Left root system -->
<path d="M145 55 Q130 40 120 20 Q115 15 110 5" stroke="url(#rootGradient)" stroke-width="6" fill="none" stroke-linecap="round"/>
<path d="M140 60 Q120 45 100 30 Q90 25 80 15" stroke="url(#rootGradient)" stroke-width="5" fill="none" stroke-linecap="round"/>
<path d="M135 65 Q110 50 85 35 Q75 30 65 20" stroke="url(#rootGradient)" stroke-width="4" fill="none" stroke-linecap="round"/>
<!-- Right root system -->
<path d="M155 55 Q170 40 180 20 Q185 15 190 5" stroke="url(#rootGradient)" stroke-width="6" fill="none" stroke-linecap="round"/>
<path d="M160 60 Q180 45 200 30 Q210 25 220 15" stroke="url(#rootGradient)" stroke-width="5" fill="none" stroke-linecap="round"/>
<path d="M165 65 Q190 50 215 35 Q225 30 235 20" stroke="url(#rootGradient)" stroke-width="4" fill="none" stroke-linecap="round"/>
<!-- Smaller root branches -->
<path d="M110 5 Q105 8 100 12" stroke="url(#rootGradient)" stroke-width="3" fill="none" stroke-linecap="round"/>
<path d="M190 5 Q195 8 200 12" stroke="url(#rootGradient)" stroke-width="3" fill="none" stroke-linecap="round"/>
<path d="M145 10 Q140 12 135 15" stroke="url(#rootGradient)" stroke-width="3" fill="none" stroke-linecap="round"/>
<!-- Magical root tips -->
<circle cx="145" cy="10" r="3" fill="#FFD700" filter="url(#glow)"/>
<circle cx="160" cy="5" r="2.5" fill="#FFD700" filter="url(#glow)"/>
<circle cx="110" cy="5" r="2" fill="#FFD700" filter="url(#glow)"/>
<circle cx="190" cy="5" r="2" fill="#FFD700" filter="url(#glow)"/>
<circle cx="80" cy="15" r="1.5" fill="#FFD700" filter="url(#glow)"/>
<circle cx="220" cy="15" r="1.5" fill="#FFD700" filter="url(#glow)"/>
<!-- Lower trunk section -->
<rect x="135" y="90" width="30" height="60" fill="url(#trunkGradient)" rx="15"/>
<!-- Canopy at bottom -->
<ellipse cx="150" cy="200" rx="80" ry="50" fill="url(#canopyGradient)"/>
<ellipse cx="120" cy="220" rx="60" ry="40" fill="url(#canopyGradient)" opacity="0.8"/>
<ellipse cx="180" cy="220" rx="60" ry="40" fill="url(#canopyGradient)" opacity="0.8"/>
<ellipse cx="150" cy="240" rx="70" ry="35" fill="url(#canopyGradient)" opacity="0.9"/>
<!-- Leaves falling upward -->
<path d="M90 250 Q95 245 100 240" stroke="#228B22" stroke-width="2" fill="none"/>
<ellipse cx="100" cy="240" rx="3" ry="5" fill="#32CD32" transform="rotate(45 100 240)"/>
<path d="M210 245 Q205 240 200 235" stroke="#228B22" stroke-width="2" fill="none"/>
<ellipse cx="200" cy="235" rx="3" ry="5" fill="#32CD32" transform="rotate(-30 200 235)"/>
<path d="M130 260 Q135 255 140 250" stroke="#228B22" stroke-width="2" fill="none"/>
<ellipse cx="140" cy="250" rx="3" ry="5" fill="#32CD32" transform="rotate(60 140 250)"/>
<!-- Ground line at bottom -->
<rect x="0" y="280" width="300" height="20" fill="#8B4513" opacity="0.6"/>
<!-- Magical particles floating upward -->
<circle cx="50" cy="120" r="2" fill="#FFD700" opacity="0.7">
<animate attributeName="cy" values="120;80;40;0" dur="4s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="0.7;0.8;0.9;0" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="140" r="1.5" fill="#FF69B4" opacity="0.6">
<animate attributeName="cy" values="140;100;60;20" dur="5s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="0.6;0.7;0.8;0" dur="5s" repeatCount="indefinite"/>
</circle>
<circle cx="180" cy="160" r="2.5" fill="#00CED1" opacity="0.5">
<animate attributeName="cy" values="160;120;80;40" dur="6s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="0.5;0.6;0.7;0" dur="6s" repeatCount="indefinite"/>
</circle>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1e3c72"/>
<stop offset="100%" stop-color="#2a5298"/>
</linearGradient>
<radialGradient id="trunkGradient" cx="0.5" cy="1" r="0.5">
<stop offset="0%" stop-color="#8B5A2B"/>
<stop offset="100%" stop-color="#3E2723"/>
</radialGradient>
<linearGradient id="rootGradient" x1="0" y1="1" x2="0" y2="0">
<stop offset="0%" stop-color="#4CAF50"/>
<stop offset="100%" stop-color="#81C784"/>
</linearGradient>
<pattern id="leafPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#66BB6A" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<g transform="translate(150, 280) scale(1, -1)">
<path d="M0,0 C-20,-50 -40,-100 -20,-150 S20,-250 0,-300" fill="none" stroke="url(#trunkGradient)" stroke-width="10" />
<path d="M0,0 C20,-50 40,-100 20,-150 S-20,-250 0,-300" fill="none" stroke="url(#trunkGradient)" stroke-width="10" />
<g>
<path d="M0,-300 Q-30,-270 -60,-240 Q-30,-210 -60,-180" fill="none" stroke="url(#rootGradient)" stroke-width="6" />
<path d="M0,-300 Q30,-270 60,-240 Q30,-210 60,-180" fill="none" stroke="url(#rootGradient)" stroke-width="6" />
<path d="M-60,-180 Q-80,-150 -100,-120" fill="none" stroke="url(#rootGradient)" stroke-width="4" />
<path d="M60,-180 Q80,-150 100,-120" fill="none" stroke="url(#rootGradient)" stroke-width="4" />
<circle cx="0" cy="-300" r="20" fill="url(#leafPattern)" />
<circle cx="-60" cy="-180" r="15" fill="url(#leafPattern)" />
<circle cx="60" cy="-180" r="15" fill="url(#leafPattern)" />
</g>
</g>
<circle cx="150" cy="150" r="10" fill="#FFD700" opacity="0.8">
<animate attributeName="r" from="10" to="15" dur="2s" repeatCount="indefinite" />
<animate attributeName="opacity" from="0.8" to="1" dur="2s" repeatCount="indefinite" />
</circle>
</svg>
Judge's Analysis
Player 1's submission clearly represents the concept of an upside-down tree with roots reaching for the sky.
The composition includes a tree-like structure with a visible root system extending upward, adhering closely to the prompt and displaying creativity in execution.
Player 2's submission is minimalistic and lacks clear elements of the prompt, making it less effective in conveying the idea.
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.