Back

SVG Drawing Match #1135

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock made of melting cheese, numerals as pepperoni"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cheeseGradient" cx="0.5" cy="0.5" r="0.6" fx="0.3" fy="0.3">
      <stop offset="0%" stop-color="#fff8a1" />
      <stop offset="100%" stop-color="#ffc837" />
    </radialGradient>
    <pattern id="pepperoniPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="4" fill="#d72e1a" />
    </pattern>
  </defs>
  
  <circle cx="150" cy="150" r="120" fill="url(#cheeseGradient)" stroke="saddlebrown" stroke-width="4" />
  
  <path d="M150,30 Q170,40 165,60 T150,100 Q130,95 130,75 T150,30" fill="url(#pepperoniPattern)" />
  <path d="M150,270 Q170,260 165,240 T150,200 Q130,205 130,225 T150,270" fill="url(#pepperoniPattern)" />
  <path d="M30,150 Q40,170 60,165 T100,150 Q95,130 75,130 T30,150" fill="url(#pepperoniPattern)" />
  <path d="M270,150 Q260,170 240,165 T200,150 Q205,130 225,130 T270,150" fill="url(#pepperoniPattern)" />

  <circle cx="150" cy="150" r="10" fill="#d72e1a" />
  
  <path d="M150 150 Q160 70 180 150 L150 150 Z" fill="#d72e1a" transform="rotate(20 150 150)" />
  <path d="M150 150 L70 130 L80 90 L150 150 Z" fill="#d72e1a" transform="rotate(-10 150 150)" />
  
  <path d="M150 150 Q50 70 70 250 L150 150 Z" fill="#f5a623" opacity="0.8" filter="url(#gooey)">
    <animate
      attributeName="d"
      values="M150 150 Q50 70 70 250 L150 150 Z; M150 150 Q70 50 40 270 L150 150 Z; M150 150 Q50 70 70 250 L150 150 Z"
      dur="5s"
      repeatCount="indefinite"
    />
  </path>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#F7F4E4" rx="20" />

  <!-- Clock Body -->
  <g transform="translate(150, 150)">
    <ellipse cx="0" cy="0" rx="120" ry="100" fill="#F2C464" />
    <ellipse cx="0" cy="0" rx="110" ry="90" fill="#FFC107" />
    <ellipse cx="0" cy="0" rx="100" ry="80" fill="#FFA07A" />
  </g>

  <!-- Melting Cheese Effect -->
  <g transform="translate(150, 150)">
    <path d="M -50, -50 L 50, -50 L 50, 50 L -50, 50 Z" fill="#FFD7BE" transform="rotate(45) scale(1.5)" />
    <path d="M -40, -40 L 40, -40 L 40, 40 L -40, 40 Z" fill="#FFC4B3" transform="rotate(-45) scale(1.2)" />
    <path d="M -30, -30 L 30, -30 L 30, 30 L -30, 30 Z" fill="#FFA57D" transform="rotate(135) scale(0.8)" />
  </g>

  <!-- Numerals as Pepperoni -->
  <g font-size="24" font-family="Arial" fill="#8B0A1A" text-anchor="middle">
    <text x="150" y="70">12</text>
    <text x="220" y="120">3</text>
    <text x="220" y="180">6</text>
    <text x="150" y="230">9</text>
    <text x="80" y="180">8</text>
    <text x="80" y="120">4</text>
  </g>

  <!-- Hour and Minute Hands -->
  <g transform="translate(150, 150)">
    <line x1="0" y1="0" x2="60" y2="-20" stroke="#8B0A1A" stroke-width="4" />
    <line x1="0" y1="0" x2="80" y2="40" stroke="#8B0A1A" stroke-width="2" />
  </g>

  <!-- Center Circle -->
  <circle cx="150" cy="150" r="10" fill="#8B0A1A" />

  <!-- Shadows -->
  <g transform="translate(150, 150)" filter="url(#shadow)">
    <ellipse cx="0" cy="0" rx="120" ry="100" fill="#F2C464" />
    <ellipse cx="0" cy="0" rx="110" ry="90" fill="#FFC107" />
    <ellipse cx="0" cy="0" rx="100" ry="80" fill="#FFA07A" />
  </g>

  <!-- Shadow Filter -->
  <filter id="shadow">
    <feGaussianBlur in="SourceGraphic" stdDeviation="5" />
    <feOffset dx="5" dy="5" />
    <feComposite in2="SourceGraphic" operator="out" />
  </filter>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's submission adheres more closely to the prompt, featuring a circular shape that resembles a clock with elements that could be interpreted as melting cheese.

    The use of pepperoni-like shapes for the numerals is evident, enhancing the surreal and thematic quality.

    Player 2's design, while visually appealing, does not clearly incorporate the melting cheese or pepperoni elements, making it less aligned with 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
10
Player 2
13
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
3
Player 2
1
Ellipses

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

Player 1
Player 2
6
Lines

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

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

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

Player 1
Player 2
5

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
2

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

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
7

Complexity Metrics

Path Commands

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

Player 1
33
Player 2
15
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
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
6

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