Back

SVG Drawing Match #131

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock with melting fruits as numbers"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="clockFaceGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" stop-color="#f0f8ff"/>
      <stop offset="100%" stop-color="#d1e7f5"/>
    </radialGradient>
    <linearGradient id="meltingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff6347"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </linearGradient>
    <linearGradient id="bananaGradient" x1="1" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffe135"/>
      <stop offset="100%" stop-color="#ffcc33"/>
    </linearGradient>
    <pattern id="fruitPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="4" fill="url(#meltingGradient)" />
      <circle cx="5" cy="5" r="2" fill="url(#bananaGradient)" />
    </pattern>
  </defs>
  <circle cx="150" cy="150" r="140" fill="url(#clockFaceGradient)"/>
  <g transform="rotate(-30 150 150)">
    <path d="M135,150 C135,140 165,140 165,150 C165,160 135,160 135,150" fill="url(#meltingGradient)" />
  </g>
  <g transform="rotate(0 150 150)">
    <rect x="140" y="10" width="20" height="70" fill="url(#bananaGradient)" stroke="none" />
    <path d="M140,70 C145,90 155,90 160,70 Z" fill="url(#meltingGradient)" />
  </g>
  <g transform="rotate(30 150 150)">
    <path d="M145,140 Q150,120 155,140 T145,140 Z" fill="url(#bananaGradient)" />
    <path d="M145,140 Q150,160 155,140" fill="url(#meltingGradient)" />
  </g>
  <g transform="rotate(60 150 150)">
    <rect x="140" y="10" width="20" height="70" fill="url(#fruitPattern)" />
  </g>
  <g transform="rotate(90 150 150)">
    <path d="M140,70 C145,90 155,110 160,70 Z" fill="url(#meltingGradient)" />
  </g>
  <g transform="rotate(120 150 150)">
    <path d="M135,150 C135,140 165,130 165,140 C165,160 135,170 135,150" fill="url(#bananaGradient)" />
  </g>
  <g transform="rotate(150 150 150)">
    <rect x="140" y="10" width="20" height="70" fill="url(#bananaGradient)" stroke="none" />
    <path d="M140,70 C145,90 155,120 160,70 Z" fill="url(#meltingGradient)" />
  </g>
  <g transform="rotate(180 150 150)">
    <path d="M145,140 Q160,140 150,120 T145,140 Z" fill="url(#fruitPattern)" />
  </g>
  <g transform="rotate(210 150 150)">
    <path d="M140,70 C145,90 155,110 160,70 Z" fill="url(#meltingGradient)" />
  </g>
  <g transform="rotate(240 150 150)">
    <rect x="140" y="10" width="20" height="70" fill="url(#fruitPattern)" />
  </g>
  <g transform="rotate(270 150 150)">
    <path d="M135,150 C135,140 165,130 165,150 C165,160 135,170 135,150" fill="url(#bananaGradient)" />
  </g>
  <g transform="rotate(300 150 150)">
    <path d="M140,70 C145,120 155,110 160,70 Z" fill="url(#meltingGradient)" />
  </g>
  <line x1="150" y1="150" x2="150" y2="60" stroke="#000" stroke-width="3"/>
  <line x1="150" y1="150" x2="230" y2="150" stroke="#000" stroke-width="2"/>
  <circle cx="150" cy="150" r="5" fill="#000"/>
</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="clockBg" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#2c0845"/>
      <stop offset="100%" style="stop-color:#7b1fa2"/>
    </linearGradient>
    <filter id="drip">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2"/>
      <feColorMatrix values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 18 -7"/>
    </filter>
  </defs>

  <!-- Background -->
  <circle cx="150" cy="150" r="140" fill="url(#clockBg)"/>
  
  <!-- Clock Face -->
  <circle cx="150" cy="150" r="130" fill="none" stroke="#fff" stroke-width="2"/>
  
  <!-- Melting Fruits -->
  <!-- Orange at 12 -->
  <g transform="translate(150,40)">
    <circle cx="0" cy="0" r="20" fill="#ff9800"/>
    <path d="M-5 15 Q0 40 5 60" fill="#ff9800" filter="url(#drip)"/>
  </g>
  
  <!-- Apple at 3 -->
  <g transform="translate(260,150)">
    <path d="M0,0 Q10,-15 0,-20 Q-10,-15 0,0" fill="#4caf50"/>
    <circle cx="0" cy="0" r="15" fill="#f44336"/>
    <path d="M-5 10 Q0 30 10 45" fill="#f44336" filter="url(#drip)"/>
  </g>
  
  <!-- Banana at 6 -->
  <g transform="translate(150,260)">
    <path d="M-15,-5 Q0,15 15,-5" fill="#ffeb3b"/>
    <path d="M0 10 Q5 35 15 50" fill="#ffeb3b" filter="url(#drip)"/>
  </g>
  
  <!-- Grapes at 9 -->
  <g transform="translate(40,150)">
    <circle cx="0" cy="0" r="5" fill="#9c27b0"/>
    <circle cx="6" cy="5" r="5" fill="#9c27b0"/>
    <circle cx="-6" cy="5" r="5" fill="#9c27b0"/>
    <path d="M0 5 Q-10 35 -15 50" fill="#9c27b0" filter="url(#drip)"/>
  </g>

  <!-- Clock Hands -->
  <g transform="translate(150,150)">
    <line x1="0" y1="0" x2="0" y2="-60" stroke="#fff" stroke-width="4" transform="rotate(240)"/>
    <line x1="0" y1="0" x2="0" y2="-90" stroke="#fff" stroke-width="2" transform="rotate(120)"/>
    <circle cx="0" cy="0" r="8" fill="#fff"/>
  </g>

  <!-- Decorative Elements -->
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="5" fill="#fff"/>
    <circle cx="0" cy="0" r="3" fill="#000"/>
  </g>
</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 adheres more closely to the surreal theme with melting fruits integrated as numbers, incorporating a more visually appealing and cohesive design.

    The use of color and the smooth gradient background enhance the surreal quality.

    Player 1's submission, while creative, lacks the melting effect and cohesive visual appeal seen in Player 2's design.

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
21
Player 2
18
Rectangles

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

Player 1
4
Player 2
Circles

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

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

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

Player 1
12
Player 2
6

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
1
Patterns

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

Player 1
1
Player 2
Filters

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

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

Complexity Metrics

Path Commands

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

Player 1
34
Player 2
13
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
4
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

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