Back

SVG Drawing Match #442

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock melting over a mountain, time flowing like a waterfall"

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:#1a0b2e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4a2f7f;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="mountainGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#2c1654;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1a0b2e;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ffd700;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#ff8c00;stop-opacity:0.6" />
    </radialGradient>
  </defs>

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

  <!-- Mountain -->
  <path d="M0,300 L100,150 L200,250 L300,180 L300,300 Z" fill="url(#mountainGradient)"/>

  <!-- Melting Clock -->
  <g transform="translate(150,100)">
    <circle cx="0" cy="0" r="40" fill="url(#clockGradient)" />
    <path d="M0,0 C40,0 40,40 40,80 C40,120 0,150 0,200 S-40,160 -40,120 C-40,80 -40,0 0,0" 
          fill="url(#clockGradient)" />
    
    <!-- Clock Numbers -->
    <g fill="#fff" font-family="Arial" font-size="8">
      <text x="0" y="-25" text-anchor="middle">12</text>
      <text x="25" y="0" text-anchor="middle">3</text>
      <text x="0" y="25" text-anchor="middle">6</text>
      <text x="-25" y="0" text-anchor="middle">9</text>
    </g>

    <!-- Clock Hands -->
    <g transform="rotate(-30)">
      <path d="M0,0 L0,-30" stroke="#fff" stroke-width="2" />
      <path d="M0,0 L20,0" stroke="#fff" stroke-width="2" />
    </g>
  </g>

  <!-- Time Waterfall -->
  <path d="M150,180 C150,180 100,200 120,240 C140,280 160,260 180,280 C200,300 220,280 220,260"
        fill="none" stroke="rgba(255,215,0,0.4)" stroke-width="8">
    <animate attributeName="d" 
             dur="3s"
             repeatCount="indefinite"
             values="M150,180 C150,180 100,200 120,240 C140,280 160,260 180,280 C200,300 220,280 220,260;
                     M150,180 C150,180 120,200 140,240 C160,280 180,260 200,280 C220,300 240,280 240,260;
                     M150,180 C150,180 100,200 120,240 C140,280 160,260 180,280 C200,300 220,280 220,260"/>
  </path>

  <!-- Floating Time Numbers -->
  <g fill="rgba(255,255,255,0.6)" font-family="Arial">
    <text x="140" y="220" font-size="12">
      <animate attributeName="y" 
               values="220;260;220"
               dur="2s"
               repeatCount="indefinite"/>
      12:30
    </text>
    <text x="180" y="240" font-size="10">
      <animate attributeName="y"
               values="240;280;240"
               dur="2.5s"
               repeatCount="indefinite"/>
      3:45
    </text>
    <text x="160" y="260" font-size="14">
      <animate attributeName="y"
               values="260;300;260"
               dur="1.8s"
               repeatCount="indefinite"/>
      9:15
    </text>
  </g>

  <!-- Stars -->
  <g fill="#fff">
    <circle cx="50" cy="50" r="1">
      <animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="80" r="1">
      <animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="180" cy="40" r="1">
      <animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Mountain -->
  <rect x="50" y="150" width="200" height="100" rx="20" fill="#434A54" />
  <rect x="60" y="160" width="180" height="80" rx="15" fill="#2F3640" />
  <rect x="70" y="170" width="160" height="60" rx="10" fill="#1F2730" />
  
  <!-- Clock -->
  <g transform="translate(140, 100)">
    <circle cx="0" cy="0" r="40" fill="url(#clock-gradient)" />
    <circle cx="0" cy="0" r="35" fill="#FFFFFF" />
    <circle cx="0" cy="0" r="30" fill="url(#clock-gradient)" />
    <circle cx="0" cy="0" r="25" fill="#FFFFFF" />
    <circle cx="0" cy="0" r="20" fill="url(#clock-gradient)" />
    
    <!-- Clock Hands -->
    <rect x="-5" y="-40" width="10" height="80" fill="#FFFFFF" rx="2" transform="rotate(30)" />
    <rect x="-5" y="-20" width="10" height="40" fill="#FFFFFF" rx="2" transform="rotate(60)" />
    
    <!-- Melting Effect -->
    <g transform="translate(0, 40)">
      <circle cx="0" cy="0" r="15" fill="#FFFFFF" />
      <circle cx="0" cy="10" r="10" fill="#FFFFFF" />
      <circle cx="0" cy="20" r="5" fill="#FFFFFF" />
    </g>
  </g>
  
  <!-- Waterfall -->
  <g transform="translate(140, 140)">
    <path d="M 0,0 C 0,-10 10,-20 20,-30 L 40,-40 L 60,-40 L 80,-30 C 90,-20 100,-10 100,0 Z" fill="url(#waterfall-gradient)" />
    <path d="M 0,0 C 0,-15 15,-30 30,-45 L 50,-60 L 70,-60 L 90,-45 C 105,-30 120,-15 120,0 Z" fill="url(#waterfall-gradient)" />
    <path d="M 0,0 C 0,-20 20,-40 40,-60 L 60,-80 L 80,-80 L 100,-60 C 120,-40 140,-20 140,0 Z" fill="url(#waterfall-gradient)" />
  </g>
  
  <!-- Gradients -->
  <linearGradient id="clock-gradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#FFFFFF" stop-opacity="1" />
    <stop offset="1" stop-color="#AAAAAA" stop-opacity="1" />
  </linearGradient>
  <linearGradient id="waterfall-gradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#34A85A" stop-opacity="1" />
    <stop offset="1" stop-color="#87CEEB" stop-opacity="1" />
  </linearGradient>
</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 creatively blends the concept of a melting clock with a dynamic mountain backdrop, effectively illustrating time flowing like a waterfall.

    The use of colors and gradients enhances the visual appeal, while maintaining a strong adherence to the prompt.

    Player 2's image lacks clarity and does not convey the theme as effectively, making Player 1's submission the more compelling 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

Total Shapes

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

Player 1
10
Player 2
16
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
4
Player 2
8
Ellipses

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

Player 1
Player 2
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
5
Player 2
3
Groups

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

Player 1
Player 2
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
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
7

Interactivity Metrics

Animations

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

Player 1
7
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
5

Complexity Metrics

Path Commands

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

Player 1
19
Player 2
21
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

Player 1
3
Player 2
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
7
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