Back

SVG Drawing Match #1939

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clock with melting numerals in a desert landscape"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert Landscape -->
  <rect x="0" y="150" width="300" height="150" fill="#F5F5DC" rx="10" />
  <rect x="0" y="170" width="300" height="30" fill="#FFD700" rx="10" />
  <rect x="0" y="200" width="300" height="30" fill="#FFC080" rx="10" />
  <rect x="0" y="230" width="300" height="30" fill="#FFA07A" rx="10" />
  <rect x="0" y="260" width="300" height="30" fill="#FF9900" rx="10" />

  <!-- Clock -->
  <circle cx="150" cy="75" r="50" fill="none" stroke="#333" stroke-width="5" />
  <circle cx="150" cy="75" r="40" fill="#FFF" />
  <circle cx="150" cy="75" r="35" fill="none" stroke="#333" stroke-width="5" />

  <!-- Melting Numerals -->
  <g transform="translate(150, 75)">
    <path d="M -35, 0 L -20, 0 L -20, -10 L -35, -10 Z" fill="#333" transform="rotate(-30)" />
    <path d="M -20, 0 L -5, 0 L -5, -10 L -20, -10 Z" fill="#333" transform="rotate(-30)" />
    <path d="M 0, 0 L 15, 0 L 15, -10 L 0, -10 Z" fill="#333" transform="rotate(-30)" />
    <path d="M 15, 0 L 30, 0 L 30, -10 L 15, -10 Z" fill="#333" transform="rotate(-30)" />
    <path d="M 30, 0 L 45, 0 L 45, -10 L 30, -10 Z" fill="#333" transform="rotate(-30)" />
    <path d="M -35, 0 L -20, 0 L -20, 10 L -35, 10 Z" fill="#333" transform="rotate(30)" />
    <path d="M -20, 0 L -5, 0 L -5, 10 L -20, 10 Z" fill="#333" transform="rotate(30)" />
    <path d="M 0, 0 L 15, 0 L 15, 10 L 0, 10 Z" fill="#333" transform="rotate(30)" />
    <path d="M 15, 0 L 30, 0 L 30, 10 L 15, 10 Z" fill="#333" transform="rotate(30)" />
    <path d="M 30, 0 L 45, 0 L 45, 10 L 30, 10 Z" fill="#333" transform="rotate(30)" />
  </g>

  <!-- Melt Effect -->
  <filter id="melt">
    <feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur" />
    <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0" result="goo" />
  </filter>
  <use xlink:href="#melt" x="100" y="50" width="100" height="50" fill="#FFF" filter="url(#melt)" />

  <!-- Gradient -->
  <linearGradient id="grad" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#FFF" stop-opacity="1" />
    <stop offset="1" stop-color="#FFC080" stop-opacity="1" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad)" rx="10" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert Landscape -->
  <rect x="0" y="0" width="300" height="300" fill="#ffc700" rx="10" />
  <path d="M0,250 C150,280 150,220 300,250 L300,300 L0,300 Z" fill="#ffd700" />
  <path d="M-50,250 C50,200 250,200 350,250 L350,300 L-50,300 Z" fill="#ccb400" opacity="0.7" />
  <circle cx="50" cy="240" r="30" fill="#ffd700" />
  <circle cx="220" cy="230" r="20" fill="#ccb400" />
  <circle cx="150" cy="270" r="40" fill="#ffd700" opacity="0.7" />
  
  <!-- Melting Numerals -->
  <path d="M70,70 C70,50 80,40 100,40 L100,90 L70,90 Z" fill="#3f6cac" />
  <text x="110" y="85" fill="#1b449b" font-size="40" font-weight="bold">12</text>
  <path d="M90,100 C100,120 110,140 90,160 L60,160 L60,120 L70,140 Z" fill="#66cccc" opacity="0.7" />
  <text x="140" y="145" fill="#6e98ae" font-size="30" font-weight="bold">3</text>
  <path d="M140,60 C130,50 110,50 100,70 L100,90 L140,90 C140,100 130,90 120,80 Z" fill="#4eb7a6" />
  <text x="190" y="90" fill="#5a335a" font-size="25" font-weight="bold">6</text>
  <path d="M210,70 C200,60 190,60 180,80 L180,110 L210,110 C220,120 220,100 200,90 Z" fill="#88be2b" />
  <text x="250" y="100" fill="#ba8554" font-size="30" font-weight="bold">9</text>
  <path d="M250,140 C240,130 230,140 220,160 L220,180 L250,180 C260,170 260,160 250,150 Z" fill="#b776c4" />
  
  <!-- Clock Frame -->
  <circle cx="150" cy="150" r="130" stroke="#aa6633" stroke-width="10" fill="none" />
  <circle cx="150" cy="150" r="10" fill="#aa6633" />
  <line x1="150" y1="60" x2="150" y2="90" stroke="#88a65e" stroke-width="2" />
  <line x1="150" y1="150" x2="150" y2="210" stroke="#88a65e" stroke-width="2" />
  <line x1="120" y1="150" x2="120" y2="120" stroke="#88a65e" stroke-width="2" />
  <line x1="180" y1="150" x2="180" y2="120" stroke="#88a65e" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's image effectively captures the concept of melting numerals in a desert landscape with a visually appealing color palette that enhances the surreal theme.

    The composition and technical execution are strong, with clear depiction of both the clock and the desert.

    Player 1's submission lacks clarity in the depiction of the prompt and appears more abstract, which diminishes adherence to 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
19
Player 2
17
Rectangles

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

Player 1
6
Player 2
1
Circles

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
14

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
11
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
50
Player 2
39
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
Player 2
Use Elements

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

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