Back

SVG Drawing Match #2106

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Melting clock on a floating cloud over a desert. Time drips like raindrops"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ff8a00"/>
      <stop offset="100%" style="stop-color:#e52e71"/>
    </linearGradient>
    <linearGradient id="cloudGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffffff"/>
      <stop offset="100%" style="stop-color:#b3b3b3"/>
    </linearGradient>
    <linearGradient id="desertGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffd700"/>
      <stop offset="100%" style="stop-color:#ff8c00"/>
    </linearGradient>
  </defs>

  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Desert dunes -->
  <path d="M0,220 Q75,180 150,220 T300,220 L300,300 L0,300 Z" fill="url(#desertGradient)"/>
  <path d="M0,240 Q100,200 200,240 T300,240 L300,300 L0,300 Z" fill="#ff8c00" opacity="0.6"/>

  <!-- Cloud -->
  <g transform="translate(50,80)">
    <path d="M25,60 Q0,60 0,45 Q0,30 15,30 Q15,10 35,10 Q60,10 60,30 Q80,25 85,40 Q90,60 70,60 Z" 
          fill="url(#cloudGradient)" filter="drop-shadow(3px 3px 5px rgba(0,0,0,0.3))"/>
  </g>

  <!-- Melting clock -->
  <g transform="translate(70,70)">
    <circle cx="80" cy="50" r="40" fill="#f0f0f0" stroke="#333" stroke-width="3"/>
    <path d="M80,50 L80,20" stroke="#333" stroke-width="4" stroke-linecap="round"/>
    <path d="M80,50 L100,60" stroke="#333" stroke-width="4" stroke-linecap="round"/>
    <!-- Melting effect -->
    <path d="M120,50 Q120,90 100,120 T90,180" fill="none" stroke="#f0f0f0" stroke-width="8"/>
    <path d="M40,50 Q40,100 60,140 T50,200" fill="none" stroke="#f0f0f0" stroke-width="8"/>
  </g>

  <!-- Time drops -->
  <g>
    <circle cx="150" cy="160" r="3" fill="#f0f0f0"/>
    <circle cx="140" cy="180" r="3" fill="#f0f0f0"/>
    <circle cx="160" cy="190" r="3" fill="#f0f0f0"/>
    <circle cx="130" cy="200" r="3" fill="#f0f0f0"/>
    <circle cx="170" cy="170" r="3" fill="#f0f0f0"/>
  </g>

  <!-- Clock numbers -->
  <g transform="translate(150,120)" fill="#333" font-family="Arial" font-size="12">
    <text x="25" y="-25" text-anchor="middle">12</text>
    <text x="35" y="5" text-anchor="middle">3</text>
    <text x="0" y="35" text-anchor="middle">6</text>
    <text x="-35" y="5" text-anchor="middle">9</text>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FF8C00" />
    </linearGradient>
    <linearGradient id="cloudGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#FFFFFF" />
      <stop offset="100%" stop-color="#E0E0E0" />
    </linearGradient>
    <linearGradient id="desertGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#D2B48C" />
      <stop offset="100%" stop-color="#8B4513" />
    </linearGradient>
    <pattern id="timeDrip" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#000000" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <ellipse cx="150" cy="80" rx="50" ry="30" fill="url(#cloudGradient)" />
  <ellipse cx="120" cy="90" rx="40" ry="20" fill="url(#cloudGradient)" />
  <ellipse cx="180" cy="90" rx="40" ry="20" fill="url(#cloudGradient)" />
  <rect x="130" y="75" width="40" height="30" transform="rotate(30,150,90)" fill="#A0522D" />
  <circle cx="150" cy="90" r="5" fill="#000000" />
  <path d="M140 85 L160 85" stroke="#000000" stroke-width="2" />
  <path d="M150 80 L150 100" stroke="#000000" stroke-width="2" />
  <path d="M145 95 Q150 110 155 95" fill="none" stroke="#000000" stroke-width="2" />
  <path d="M130 100 Q150 130 170 100" fill="none" stroke="#000000" stroke-width="2" />
  <rect x="0" y="200" width="300" height="100" fill="url(#desertGradient)" />
  <ellipse cx="150" cy="200" rx="300" ry="50" fill="url(#desertGradient)" />
  <path d="M140 80 C140 100 160 100 160 80" fill="none" stroke="#000000" stroke-width="2" />
  <path d="M140 80 Q150 90 160 80" fill="none" stroke="#000000" stroke-width="2" />
  <path d="M140 80 Q150 70 160 80" fill="none" stroke="#000000" stroke-width="2" />
  <rect x="145" y="80" width="10" height="50" fill="url(#timeDrip)" />
  <rect x="155" y="80" width="10" height="50" fill="url(#timeDrip)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image adheres more closely to the prompt by clearly depicting a melting clock on a floating cloud over a desert landscape.

    The time dripping like raindrops is creatively represented, and the visual appeal is enhanced by the vibrant color scheme and smooth gradients.

    Player 2's image, while imaginative, lacks clarity in representing a clock and the concept of time dripping, making Player 1's submission stronger overall.

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

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
14
Player 2
18
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
1
Player 2
5
Circles

The number of circle elements (circle) in the SVG.

Player 1
6
Player 2
2
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
Player 2
4
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
7
Player 2
7
Groups

The number of group elements (g) in the SVG.

Player 1
4
Player 2

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
3
Player 2
3
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
8

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
1

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
30
Player 2
14
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
3
Player 2
4
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
4
Player 2

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