Back

SVG Drawing Match #1880

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a cactus in the desert"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Desert background -->
  <rect width="300" height="300" fill="url(#desertGradient)"/>
  <defs>
    <linearGradient id="desertGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#ff7f00;stop-opacity:1" />
      <stop offset="1" style="stop-color:#8b008b;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Cactus -->
  <path d="M150,200 L120,250 L180,250 L150,200" fill="#2d5a27" />
  <path d="M150,250 L130,230 L170,230 L150,250" fill="#2d5a27" />
  <path d="M150,230 L140,220 L160,220 L150,230" fill="#2d5a27" />
  <path d="M150,200 L145,190 L155,190 L150,200" fill="#2d5a27" />
  <path d="M150,180 L140,170 L160,170 L150,180" fill="#2d5a27" />
  <path d="M150,170 L145,160 L155,160 L150,170" fill="#2d5a27" />
  <path d="M150,160 L140,150 L160,150 L150,160" fill="#2d5a27" />
  <path d="M150,150 L145,140 L155,140 L150,150" fill="#2d5a27" />
  <path d="M150,140 L140,130 L160,130 L150,140" fill="#2d5a27" />
  <path d="M150,130 L145,120 L155,120 L150,130" fill="#2d5a27" />

  <!-- Melting clock -->
  <path d="M150,100 C150,90 140,80 130,80 C120,80 110,90 110,100 C110,110 120,120 130,120 C140,120 150,110 150,100" fill="#cd8500" />
  <path d="M130,80 Q150,50 170,80" fill="#cd8500" />
  <path d="M110,100 Q150,130 190,100" fill="#cd8500" />
  <path d="M130,120 Q150,150 170,120" fill="#cd8500" />
  <path d="M150,100 Q150,80 170,80" fill="#cd8500" />
  <path d="M150,100 Q150,120 170,120" fill="#cd8500" />
  <path d="M150,100 Q140,100 130,100" fill="#cd8500" />
  <path d="M150,100 Q150,110 140,110" fill="#cd8500" />

  <!-- Clock numbers -->
  <text x="150" y="90" text-anchor="middle" fill="white" font-size="30">12</text>
  <text x="170" y="120" text-anchor="middle" fill="white" font-size="30">3</text>
  <text x="150" y="150" text-anchor="middle" fill="white" font-size="30">6</text>
  <text x="130" y="120" text-anchor="middle" fill="white" font-size="30">9</text>

  <!-- Drips -->
  <path d="M150,160 Q160,180 170,160" fill="#ffd700" />
  <path d="M150,140 Q160,160 170,140" fill="#ffd700" />
  <path d="M150,120 Q160,140 170,120" fill="#ffd700" />
  <path d="M150,100 Q160,120 170,100" fill="#ffd700" />
  <path d="M150,80 Q160,100 170,80" fill="#ffd700" />

  <!-- Desert sand -->
  <path d="M0,290 Q150,300 300,290" fill="#d2b48c" />

  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="white" />
  <circle cx="100" cy="80" r="2" fill="white" />
  <circle cx="200" cy="60" r="2" fill="white" />
  <circle cx="250" cy="100" r="2" fill="white" />
  <circle cx="300" cy="80" r="2" fill="white" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Sky Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" style="stop-color:rgb(135,206,250);" />
      <stop offset="100%" style="stop-color:rgb(252,229,205);" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Sand Dunes -->
  <path d="M0,250 Q75,200 150,240 T300,250 V300 H0 Z" fill="#EDC9AF" />
  
  <!-- Cactus -->
  <g transform="translate(150, 190)">
    <path d="M10,-60 Q25,-90 40,-60 Q55,-30 40,-15 Q35,5 40,30 Q45,60 25,60 Q5,60 0,30 Q-5,5 -10,-15 Q-25,-30 -10,-60" fill="#228B22" />

    <!-- Surreal Melting Clock -->
    <g transform="rotate(-15)">
      <!-- Clock Base -->
      <path d="M0,-65 C15,-85 45,-75 60,-60 C80,-30 70,0 50,-10 C35,-20 10,-10 0,-30 Z" fill="#FFD700" stroke="#DAA520" stroke-width="2" />
      <!-- Clock Face -->
      <circle cx="30" cy="-45" r="20" fill="#FFFAF0" />
      <!-- Clock Hands -->
      <line x1="30" y1="-45" x2="40" y2="-55" stroke="#DA70D6" stroke-width="2" />
      <line x1="30" y1="-45" x2="30" y2="-35" stroke="#DA70D6" stroke-width="2" />
    </g>
  </g>

  <!-- Sun -->
  <circle cx="240" cy="60" r="30" fill="yellow" />
  <!-- Sun Rays -->
  <line x1="240" y1="30" x2="240" y2="0" stroke="orange" stroke-width="2" />
  <line x1="270" y1="60" x2="300" y2="60" stroke="orange" stroke-width="2" />
  <line x1="240" y1="90" x2="240" y2="120" stroke="orange" stroke-width="2" />
  <line x1="210" y1="60" x2="180" y2="60" stroke="orange" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt by visually depicting a melting clock over a cactus in a desert setting, complete with a sun and sand dunes.

    The composition is clear and effectively conveys the surreal theme.

    In contrast, Player 1's image lacks clear representation of the elements specified in the prompt, making it less effective in fulfilling the theme.

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
30
Player 2
12
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
5
Player 2
2
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
6
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
24
Player 2
3
Groups

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
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
Player 2
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
71
Player 2
19
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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