Back

SVG Drawing Match #933

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a tree branch, in Dali-esque style"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="daliGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFC107" stop-opacity="1" />
      <stop offset="50%" stop-color="#FF9800" stop-opacity="1" />
      <stop offset="100%" stop-color="#FF69B4" stop-opacity="1" />
    </linearGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#8BC34A" stop-opacity="1" />
      <stop offset="100%" stop-color="#4CAF50" stop-opacity="1" />
    </radialGradient>
  </defs>

  <!-- Tree branch -->
  <path d="M 100,200 C 120,220 140,240 160,260" stroke="#663300" stroke-width="10" fill="none" />
  <path d="M 160,260 C 180,280 200,300 220,320" stroke="#663300" stroke-width="10" fill="none" />
  <path d="M 220,320 C 240,340 260,360 280,380" stroke="#663300" stroke-width="10" fill="none" />

  <!-- Melting clock -->
  <path d="M 180,150 C 200,170 220,190 240,210" fill="url(#clockGradient)" />
  <path d="M 240,210 C 260,230 280,250 300,270" fill="url(#clockGradient)" />
  <path d="M 180,150 C 160,130 140,110 120,90" fill="url(#clockGradient)" />
  <path d="M 120,90 C 100,70 80,50 60,30" fill="url(#clockGradient)" />

  <!-- Dali-esque landscape -->
  <rect x="0" y="0" width="300" height="300" fill="url(#daliGradient)" />
  <path d="M 0,100 C 50,120 100,140 150,160" fill="#FFC107" />
  <path d="M 150,160 C 200,180 250,200 300,220" fill="#FF9800" />
  <path d="M 0,200 C 50,220 100,240 150,260" fill="#FF69B4" />
  <path d="M 150,260 C 200,280 250,300 300,320" fill="#FF69B4" />

  <!-- Clock hands -->
  <line x1="220" y1="220" x2="240" y2="240" stroke="#4CAF50" stroke-width="5" />
  <line x1="220" y1="220" x2="200" y2="200" stroke="#4CAF50" stroke-width="5" />
  <circle cx="220" cy="220" r="10" fill="#4CAF50" />
</svg>
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:#e53935"/>
    </linearGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#f1f1f1"/>
      <stop offset="100%" style="stop-color:#d4d4d4"/>
    </radialGradient>
  </defs>
  
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <path d="M 50,150 Q 100,100 150,160 T 250,140" 
        fill="none" stroke="#4a2105" stroke-width="15"/>
  
  <path d="M 120,140 Q 140,180 180,170 T 220,200 Q 240,220 260,210 Q 250,240 220,250 Q 180,260 150,240 Q 120,220 100,200 Z" 
        fill="url(#clockGradient)" 
        style="filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3));"/>
  
  <circle cx="150" cy="170" r="40" 
          fill="none" stroke="#333" stroke-width="3"/>
  
  <path d="M 150,170 L 150,140" stroke="#333" stroke-width="4"/>
  <path d="M 150,170 L 170,190" stroke="#333" stroke-width="4"/>
  
  <text x="140" y="160" font-family="Arial" font-size="12" fill="#333">12</text>
  <text x="170" y="175" font-family="Arial" font-size="12" fill="#333">3</text>
  <text x="145" y="195" font-family="Arial" font-size="12" fill="#333">6</text>
  <text x="125" y="175" font-family="Arial" font-size="12" fill="#333">9</text>
  
  <path d="M 190,170 Q 210,190 230,185 T 260,200" 
        fill="url(#clockGradient)" 
        style="filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));"/>
  
  <ellipse cx="150" cy="270" rx="100" ry="20" 
           fill="#000" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image more effectively captures the surreal and Dali-esque style with the melting clock draped over a tree branch.

    The composition is dynamic and visually engaging, with a clear representation of the concept.

    In contrast, Player 1's submission lacks the necessary elements to convey the prompt effectively.

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
15
Player 2
8
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
1
Player 2
1
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
3

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

Complexity Metrics

Path Commands

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

Player 1
22
Player 2
18
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
2
Player 2
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
Player 2
4

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