Back

SVG Drawing Match #226

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock with melting time, nestled in a desert of swirling sand patterns"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#edc9a9;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#d8b781;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#f7e1b8;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f3d84d;stop-opacity:1" />
    </linearGradient>
    <filter id="distort" x="-20%" y="-20%" width="140%" height="140%">
      <feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="turbulence"/>
      <feDisplacementMap in="SourceGraphic" in2="turbulence" scale="10" />
    </filter>
  </defs>
  <rect width="100%" height="100%" fill="#c2a16d"/>
  <g transform="translate(150,150)">
    <ellipse cx="0" cy="0" rx="75" ry="90" fill="url(#clockGradient)" filter="url(#distort)"/>
    <path d="M-40,-90 Q-80,-70 -60,-50 Q-20,-30 -5,-40 Q10,-50 15,-70 Q5,-80 -10,-80 Q-30,-75 -40,-90 Z" fill="#f2d42c"/>
    <circle r="10" fill="#6b2b00"/>
    <line x1="0" y1="0" x2="0" y2="-40" stroke="#6b2b00" stroke-width="4" stroke-linecap="round" />
    <line x1="0" y1="0" x2="20" y2="-20" stroke="#6b2b00" stroke-width="2" stroke-linecap="round"/>
    <text x="-20" y="10" font-family="Verdana" font-size="12" fill="#6b2b00">12</text>
    <text x="15" y="30" font-family="Verdana" font-size="12" fill="#6b2b00">3</text>
    <text x="-30" y="30" font-family="Verdana" font-size="12" fill="#6b2b00">9</text>
    <text x="0" y="-50" font-family="Verdana" font-size="12" fill="#6b2b00">6</text>
  </g>
  <g fill="url(#sandGradient)">
    <path d="M10,250 Q75,220 150,250 Q225,280 290,250 L300,300 L0,300 Z" />
    <path d="M0,240 Q40,210 75,230 Q125,250 200,230 Q270,210 300,240 L300,300 L0,300 Z" />
    <path d="M0,230 Q30,200 70,210 Q150,220 225,210 Q280,200 300,230 L300,300 L0,300 Z" />
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert Background -->
  <rect x="0" y="0" width="300" height="300" fill="#F5DEB3" />
  <g transform="translate(150, 150)">
    <!-- Swirling Sand Pattern -->
    <g transform="rotate(45)">
      <rect x="-150" y="-150" width="300" height="300" fill="url(#sand-gradient)" />
      <path d="M-150 -150 L150 150" stroke="#F2C464" stroke-width="2" />
      <path d="M-100 -100 L100 100" stroke="#F2C464" stroke-width="2" />
      <path d="M-50 -50 L50 50" stroke="#F2C464" stroke-width="2" />
    </g>
    <!-- Melting Time -->
    <g transform="translate(0, 50)">
      <path d="M-50 0 Q 0 50 50 0" fill="#39B4BF" />
      <path d="M-40 0 Q 0 40 40 0" fill="#3E92CC" />
      <path d="M-30 0 Q 0 30 30 0" fill="#4499D8" />
    </g>
    <!-- Clock -->
    <circle cx="0" cy="0" r="50" fill="#3E92CC" />
    <path d="M-35 0 L35 0" stroke="#F2C464" stroke-width="4" />
    <path d="M0 -35 L0 35" stroke="#F2C464" stroke-width="4" />
    <circle cx="0" cy="0" r="10" fill="#39B4BF" />
    <!-- Clock Hands -->
    <path d="M0 0 L-20 20" stroke="#F2C464" stroke-width="2" />
    <path d="M0 0 L20 -20" stroke="#F2C464" stroke-width="2" />
  </g>
  <!-- Gradient Definitions -->
  <defs>
    <linearGradient id="sand-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#F5DEB3" />
      <stop offset="100%" stop-color="#F2C464" />
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 1

Judge's Analysis

    Player 1's submission more closely adheres to the prompt with a clock that visually appears to be melting, set against a desert-like background.

    The use of warm colors and sand patterns creates a cohesive visual that aligns well with the theme.

    Player 2's image, while visually appealing, lacks the melting and desert elements specified in the prompt.

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
9
Player 2
14
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
1
Player 2
2
Ellipses

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

Player 1
1
Player 2
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
4
Player 2
10
Groups

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

Player 1
2
Player 2
3

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
5

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

Complexity Metrics

Path Commands

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

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