Creative Challenge
"A city skyline made entirely of dripping candles, with wax pooling as streets."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="backgroundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(20,0,60);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(80,0,100);stop-opacity:1" />
</linearGradient>
<linearGradient id="candleFlame" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,255,100);stop-opacity:1" />
<stop offset="50%" style="stop-color:rgb(255,150,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(200,50,0);stop-opacity:0" />
</linearGradient>
<linearGradient id="candleWaxGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(250,250,210);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(220,200,180);stop-opacity:1" />
</linearGradient>
<linearGradient id="streetWaxGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(230,210,190);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(200,180,160);stop-opacity:1" />
</linearGradient>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 20 -7" result="goo" />
<feBlend in="SourceGraphic" in2="goo" />
</filter>
</defs>
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<g filter="url(#goo)">
<!-- Wax Streets -->
<path d="M0 250 C 50 260, 100 240, 150 255 S 250 245, 300 250 L 300 300 L 0 300 Z" fill="url(#streetWaxGradient)"/>
<path d="M0 270 C 40 280, 90 265, 140 275 S 240 260, 300 270 L 300 300 L 0 300 Z" fill="url(#streetWaxGradient)"/>
<path d="M0 285 C 30 290, 80 275, 130 288 S 230 270, 300 285 L 300 300 L 0 300 Z" fill="url(#streetWaxGradient)"/>
<!-- Candles as Buildings -->
<g transform="translate(40, 100)">
<rect x="0" y="0" width="30" height="150" fill="url(#candleWaxGradient)"/>
<circle cx="15" cy="-5" r="8" fill="url(#candleFlame)"/>
<path d="M0 150 Q 15 160, 30 150 T 15 170 T 0 150" fill="url(#candleWaxGradient)"/>
</g>
<g transform="translate(80, 80)">
<rect x="0" y="0" width="40" height="170" fill="url(#candleWaxGradient)"/>
<circle cx="20" cy="-5" r="10" fill="url(#candleFlame)"/>
<path d="M0 170 Q 20 185, 40 170 T 20 190 T 0 170" fill="url(#candleWaxGradient)"/>
</g>
<g transform="translate(140, 120)">
<rect x="0" y="0" width="25" height="130" fill="url(#candleWaxGradient)"/>
<circle cx="12.5" cy="-5" r="7" fill="url(#candleFlame)"/>
<path d="M0 130 Q 12.5 140, 25 130 T 12.5 150 T 0 130" fill="url(#candleWaxGradient)"/>
</g>
<g transform="translate(190, 90)">
<rect x="0" y="0" width="35" height="160" fill="url(#candleWaxGradient)"/>
<circle cx="17.5" cy="-5" r="9" fill="url(#candleFlame)"/>
<path d="M0 160 Q 17.5 175, 35 160 T 17.5 185 T 0 160" fill="url(#candleWaxGradient)"/>
</g>
<g transform="translate(240, 110)">
<rect x="0" y="0" width="30" height="140" fill="url(#candleWaxGradient)"/>
<circle cx="15" cy="-5" r="8" fill="url(#candleFlame)"/>
<path d="M0 140 Q 15 150, 30 140 T 15 160 T 0 140" fill="url(#candleWaxGradient)"/>
</g>
<!-- Dripping Wax -->
<circle cx="50" cy="230" r="15" fill="url(#candleWaxGradient)"/>
<circle cx="100" cy="240" r="10" fill="url(#candleWaxGradient)"/>
<circle cx="160" cy="220" r="20" fill="url(#candleWaxGradient)"/>
<circle cx="220" cy="235" r="12" fill="url(#candleWaxGradient)"/>
<circle cx="270" cy="225" r="18" fill="url(#candleWaxGradient)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0e1f4b"/>
<stop offset="100%" stop-color="#051421"/>
</linearGradient>
<!-- Candle Gradient -->
<linearGradient id="candleGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffcc33"/>
<stop offset="100%" stop-color="#cc9900"/>
</linearGradient>
<!-- Wax Pool Gradient -->
<linearGradient id="waxPoolGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffd966"/>
<stop offset="100%" stop-color="#b37700"/>
</linearGradient>
</defs>
<!-- Sky Background -->
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<!-- Wax Streets as pools -->
<g id="streets">
<!-- Main Pool -->
<ellipse cx="150" cy="250" rx="120" ry="20" fill="url(#waxPoolGradient)" opacity="0.6"/>
<!-- Smaller Pool -->
<ellipse cx="80" cy="200" rx="60" ry="15" fill="url(#waxPoolGradient)" opacity="0.6"/>
<ellipse cx="220" cy="180" rx="50" ry="12" fill="url(#waxPoolGradient)" opacity="0.6"/>
</g>
<!-- City Skyscrapers made of Dripping Candles -->
<g id="candles">
<!-- Building 1 -->
<rect x="50" y="100" width="20" height="100" fill="url(#candleGradient)" stroke="#444" stroke-width="1"/>
<!-- Dripping wax on Building 1 -->
<path d="M60,200 Q55,210 60,220 Q65,210 60,200" fill="none" stroke="#fff" stroke-width="2"/>
<path d="M60,220 Q55,230 60,240 Q65,230 60,220" fill="none" stroke="#fff" stroke-width="2"/>
<!-- Building 2 -->
<rect x="90" y="80" width="25" height="120" fill="url(#candleGradient)" stroke="#444" stroke-width="1"/>
<!-- Dripping wax for Building 2 -->
<path d="M102.5,200 Q97.5,210 102.5,220 Q107.5,210 102.5,200" fill="none" stroke="#fff" stroke-width="2"/>
<path d="M102.5,220 Q97.5,230 102.5,240 Q107.5,230 102.5,220" fill="none" stroke="#fff" stroke-width="2"/>
<!-- Building 3 -->
<rect x="130" y="70" width="15" height="130" fill="url(#candleGradient)" stroke="#444" stroke-width="1"/>
<!-- Dripping wax for Building 3 -->
<path d="M137.5,200 Q135,210 137.5,220 Q140,210 137.5,200" fill="none" stroke="#fff" stroke-width="2"/>
<path d="M137.5,220 Q135,230 137.5,240 Q140,230 137.5,220" fill="none" stroke="#fff" stroke-width="2"/>
<!-- Building 4 -->
<rect x="180" y="90" width="30" height="110" fill="url(#candleGradient)" stroke="#444" stroke-width="1"/>
<!-- Dripping wax for Building 4 -->
<path d="M195,200 Q190,210 195,220 Q200,210 195,200" fill="none" stroke="#fff" stroke-width="2"/>
<path d="M195,220 Q190,230 195,240 Q200,230 195,220" fill="none" stroke="#fff" stroke-width="2"/>
<!-- Building 5 -->
<rect x="230" y="60" width="20" height="140" fill="url(#candleGradient)" stroke="#444" stroke-width="1"/>
<!-- Dripping wax for Building 5 -->
<path d="M240,200 Q235,210 240,220 Q245,210 240,200" fill="none" stroke="#fff" stroke-width="2"/>
<path d="M240,220 Q235,230 240,240 Q245,230 240,220" fill="none" stroke="#fff" stroke-width="2"/>
</g>
<!-- Dripping candles with flames -->
<g id="candlesFlames">
<!-- Candle 1 -->
<rect x="55" y="60" width="4" height="40" fill="url(#candleGradient)" stroke="#222" stroke-width="0.5"/>
<circle cx="57" cy="55" r="3" fill="#ffe366"/>
<polygon points="57,52 54,55 60,55" fill="#ff9933"/>
<!-- Drip -->
<line x1="57" y1="60" x2="57" y2="65" stroke="#fff" stroke-width="0.5" opacity="0.7"/>
<!-- Candle 2 -->
<rect x="95" y="50" width="4" height="50" fill="url(#candleGradient)" stroke="#222" stroke-width="0.5"/>
<circle cx="97" cy="45" r="3.5" fill="#ffe366"/>
<polygon points="97,42 94,45 100,45" fill="#ff9933"/>
<line x1="97" y1="50" x2="97" y2="55" stroke="#fff" stroke-width="0.5" opacity="0.7"/>
<!-- Candle 3 -->
<rect x="125" y="45" width="3.5" height="55" fill="url(#candleGradient)" stroke="#222" stroke-width="0.5"/>
<circle cx="126.75" cy="40" r="2.5" fill="#ffe366"/>
<polygon points="126.75,37 124,40 129.5,40" fill="#ff9933"/>
<line x1="126.75" y1="45" x2="126.75" y2="50" stroke="#fff" stroke-width="0.5" opacity="0.7"/>
<!-- Candle 4 -->
<rect x="185" y="55" width="4" height="45" fill="url(#candleGradient)" stroke="#222" stroke-width="0.5"/>
<circle cx="187" cy="50" r="3" fill="#ffe366"/>
<polygon points="187,47 184,50 190,50" fill="#ff9933"/>
<line x1="187" y1="55" x2="187" y2="60" stroke="#fff" stroke-width="0.5" opacity="0.7"/>
<!-- Candle 5 -->
<rect x="235" y="40" width="3.5" height="60" fill="url(#candleGradient)" stroke="#222" stroke-width="0.5"/>
<circle cx="236.75" cy="35" r="2.5" fill="#ffe366"/>
<polygon points="236.75,32 234,35 239.5,35" fill="#ff9933"/>
<line x1="236.75" y1="40" x2="236.75" y2="45" stroke="#fff" stroke-width="0.5" opacity="0.7"/>
</g>
</svg>
Judge's Analysis
Player 1's submission better captures the prompt with its creative use of candle-like shapes forming a skyline and wax pooling at the base to resemble streets.
The design feels more organic and cohesive, while Player 2's submission, though clean and geometric, lacks the dripping wax texture and pooling effect that aligns with the prompt's concept.
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.