Back

SVG Drawing Match #1390

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting on an ice cream cone"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="coneGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#d2a679"/>
      <stop offset="100%" stop-color="#8b5e3c"/>
    </linearGradient>
    <radialGradient id="iceCreamGradient" cx="50%" cy="30%" r="50%">
      <stop offset="0%" stop-color="#ff99cc"/>
      <stop offset="100%" stop-color="#ff6699"/>
    </radialGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f3f3f3"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </radialGradient>
    <pattern id="clockFacePattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M10 0 L0 0 L0 10" fill="none" stroke="#999" stroke-width="0.5"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#e0f7fa"/>

  <!-- Ice Cream Cone -->
  <path d="M150,180 L115,280 L185,280 Z" fill="url(#coneGradient)" stroke="#8b5e3c" stroke-width="1"/>
  <!-- Cone texture -->
  <line x1="130" y1="200" x2="140" y2="220" stroke="#8b5e3c" stroke-width="1"/>
  <line x1="150" y1="190" x2="140" y2="215" stroke="#8b5e3c" stroke-width="1"/>
  <line x1="170" y1="200" x2="160" y2="220" stroke="#8b5e3c" stroke-width="1"/>
  
  <!-- Melting Clock -->
  <g transform="translate(80,60)">
    <!-- Clock body, distorted and melting -->
    <path d="M70 0 
             C100 -5, 130 20, 135 50 
             C140 80, 120 110, 90 115 
             C60 120, 30 100, 25 70 
             C20 40, 40 10, 70 0 Z" fill="url(#clockGradient)" stroke="#666" stroke-width="2"/>
    <!-- Clock face pattern overlay -->
    <path d="M70 0 
             C100 -5, 130 20, 135 50 
             C140 80, 120 110, 90 115 
             C60 120, 30 100, 25 70 
             C20 40, 40 10, 70 0 Z" fill="url(#clockFacePattern)" opacity="0.4"/>
    <!-- Clock hands -->
    <line x1="70" y1="60" x2="70" y2="20" stroke="#333" stroke-width="3" stroke-linecap="round" />
    <line x1="70" y1="60" x2="100" y2="60" stroke="#333" stroke-width="3" stroke-linecap="round" />
    <!-- Drips of melted clock -->
    <path d="M135 50 
             C145 60, 150 70, 142 80" fill="none" stroke="#666" stroke-width="2"/>
    <circle cx="142" cy="80" r="3" fill="#666"/>
    <path d="M90 115 
             C80 125, 70 130, 65 125" fill="none" stroke="#666" stroke-width="2"/>
    <circle cx="65" cy="125" r="3" fill="#666"/>
    <path d="M25 70 
             C15 75, 10 80, 12 90" fill="none" stroke="#666" stroke-width="2"/>
    <circle cx="12" cy="90" r="3" fill="#666"/>
  </g>
  
  <!-- Ice Cream Scoop -->
  <circle cx="150" cy="160" r="50" fill="url(#iceCreamGradient)" stroke="#ff6699" stroke-width="2"/>
  <!-- Drips off the ice cream -->
  <path d="M180 160
           C190 165, 190 175, 180 180
           C175 182, 170 180, 168 175" fill="url(#iceCreamGradient)" stroke="#ff6699" stroke-width="1"/>
  <path d="M120 160
           C110 165, 110 175, 120 180
           C125 182, 130 180, 132 175" fill="url(#iceCreamGradient)" stroke="#ff6699" stroke-width="1"/>
  
  <!-- Visual surreal element: floating numerals drifting from the clock -->
  <text x="60" y="40" font-family="Arial" font-size="14" fill="#333" transform="rotate(-15 60,40)">12</text>
  <text x="145" y="25" font-family="Arial" font-size="14" fill="#333" transform="rotate(10 145,25)">3</text>
  <text x="230" y="70" font-family="Arial" font-size="14" fill="#333" transform="rotate(20 230,70)">6</text>
  <text x="210" y="140" font-family="Arial" font-size="14" fill="#333" transform="rotate(-20 210,140)">9</text>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="1" y2="0.8">
      <stop offset="0%" stop-color="#ff99cc"/>
      <stop offset="100%" stop-color="#99ccff"/>
    </linearGradient>
    <radialGradient id="cone">
      <stop offset="0%" stop-color="#f4d03f"/>
      <stop offset="100%" stop-color="#f39c12"/>
    </radialGradient>
    <filter id="meltBlur">
      <feGaussianBlur stdDeviation="2" in="SourceGraphic"/>
    </filter>
  </defs>
  
  <rect width="300" height="300" fill="url(#sky)"/>
  
  <!-- Ice Cream Cone -->
  <path d="M150 250 L130 180 L170 180 Z" fill="url(#cone)" stroke="#e67e22" stroke-width="2"/>
  <path d="M140 190 L160 190 L155 220 L145 220 Z" fill="#d35400" opacity="0.3"/>
  
  <!-- Melting Clock -->
  <g transform="translate(130 80)">
    <path d="M30 0 a30 30 0 1 0 60 0 a25 25 0 1 1 -60 0" fill="#34495e" filter="url(#meltBlur)">
      <animateTransform attributeName="transform" type="rotate" values="0;15;0" dur="10s" repeatCount="indefinite"/>
    </path>
    <path d="M45 15 L55 15 M50 10 L50 20 M35 25 L65 25" stroke="#ecf0f1" stroke-width="1.5"/>
    <path d="M0 24 Q15 50 30 24 Q45 50 60 24 L30 60 Q15 50 0 24" fill="#e74c3c" opacity="0.8"/>
  </g>
  
  <!-- Drips -->
  <path d="M160 160 Q165 175 170 165 Q175 190 180 170 Q185 200 190 175" stroke="#e74c3c" fill="none" stroke-width="3" stroke-linecap="round"/>
  
  <!-- Abstract Sprinkles -->
  <g fill="#2ecc71" opacity="0.7">
    <circle cx="100" cy="120" r="3"/>
    <rect x="200" y="90" width="4" height="15" transform="rotate(45)"/>
    <path d="M220 150 l5-5 l3 3 z"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission effectively combines a melting clock motif with an ice cream cone, adhering closely to the prompt.

    The representation is clear and visually coherent, with a recognizable clock and cone, enhancing the surreal theme.

    In contrast, Player 2's image is more abstract and less recognizable as a melting clock on an ice cream cone, making it less effective in terms of adherence to 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
19
Player 2
10
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
4
Player 2
1
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
5
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
9
Player 2
7
Groups

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
10

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

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