Back

SVG Drawing Match #267

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock made of melting ice cream, dripping into a pool of sprinkles"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cream" x1="150" y1="60" x2="150" y2="180" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#FFC3A0"/>
      <stop offset="100%" stop-color="#FFAFBD"/>
    </linearGradient>
    <radialGradient id="sprinkleShadow" cx="50%" cy="95%" r="50%">
      <stop offset="60%" stop-color="#7B4B2A" stop-opacity="0.4"/>
      <stop offset="100%" stop-color="#000" stop-opacity="0.1"/>
    </radialGradient>
    <pattern id="sprinkles" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#7B4B2A"/>
      <g transform="rotate(45)">
        <rect x="8" y="-2" width="4" height="24" fill="#FF3366"/>
        <rect x="16" y="4" width="4" height="16" fill="#00CC88"/>
        <rect x="2" y="10" width="4" height="10" fill="#FFD700"/>
      </g>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="#F0E6DC"/>
  <ellipse cx="150" cy="280" rx="140" ry="40" fill="url(#sprinkleShadow)"/>

  <!-- Sprinkles Pool -->
  <path d="M50 250 Q150 290 250 250 L250 300 50 300Z" fill="url(#sprinkles)" opacity="0.9"/>

  <!-- Melting Clock -->
  <g transform="translate(150 100)">
    <!-- Ice Cream Body -->
    <path d="M-60 0a60 60 0 1 1 120 0v100q-60 80-120 0Z" fill="url(#cream)"/>
    
    <!-- Drips -->
    <path d="M-40 90c-10 25-5 60 10 80" stroke="#FF9A8B" stroke-width="8" stroke-linecap="round" opacity="0.8"/>
    <path d="M20 95c15 30 25 70-5 90" stroke="#FF9A8B" stroke-width="12" stroke-linecap="round" opacity="0.7"/>
    
    <!-- Clock Face -->
    <circle r="40" fill="#FFF9F3" stroke="#FF859E" stroke-width="3"/>
    <g stroke="#FF6B6B" stroke-linecap="round">
      <path d="M0-25v15M25 0h-15" stroke-width="4"/>
      <path d="M0-35v25" stroke-width="6"/>
      <circle cx="0" cy="0" r="5" fill="#FF6B6B"/>
    </g>
  </g>

  <!-- Melt Shine -->
  <path d="M110 120q30-15 60 0" fill="none" stroke="#FFF" stroke-width="8" stroke-opacity="0.3" stroke-linecap="round"/>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="iceCreamGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFB3C1"/>
      <stop offset="100%" stop-color="#FF69B4"/>
    </radialGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#FFD1DC" stop-opacity="0.8"/>
    </linearGradient>
    <pattern id="sprinklePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1.5" fill="#FF6347"/>
      <circle cx="8" cy="2" r="1.5" fill="#32CD32"/>
      <circle cx="2" cy="8" r="1.5" fill="#1E90FF"/>
      <circle cx="8" cy="8" r="1.5" fill="#FFD700"/>
    </pattern>
    <mask id="dripMask">
      <rect width="300" height="300" fill="white"/>
      <path d="M150,100 C160,150 140,200 150,220 C160,200 140,250 150,290 L150,300 L0,300 L0,0 Z" fill="black"/>
    </mask>
  </defs>
  <!-- Clock Body -->
  <g>
    <circle cx="150" cy="150" r="80" fill="url(#iceCreamGradient)" stroke="#FF69B4" stroke-width="4"/>
    <path d="M70,150 C70,100 230,100 230,150 C230,200 70,200 70,150 Z" fill="url(#clockGradient)" opacity="0.6"/>
    <!-- Dripping Effect -->
    <path d="M150,230 C155,240 145,250 150,270 C155,250 145,260 150,280" stroke="#FFB3C1" stroke-width="4" fill="none" stroke-linecap="round"/>
  </g>
  <!-- Clock Hands -->
  <line x1="150" y1="150" x2="150" y2="120" stroke="#333" stroke-width="4" stroke-linecap="round"/>
  <line x1="150" y1="150" x2="180" y2="150" stroke="#333" stroke-width="4" stroke-linecap="round"/>
  <!-- Clock Center -->
  <circle cx="150" cy="150" r="5" fill="#333"/>
  <!-- Sprinkles Pool -->
  <ellipse cx="150" cy="280" rx="80" ry="10" fill="url(#sprinklePattern)" opacity="0.8" mask="url(#dripMask)"/>
  <!-- Decorative Sprinkles -->
  <g opacity="0.9">
    <circle cx="120" cy="275" r="2" fill="#FF69B4"/>
    <circle cx="130" cy="285" r="2" fill="#32CD32"/>
    <circle cx="160" cy="275" r="2" fill="#1E90FF"/>
    <circle cx="170" cy="285" r="2" fill="#FFD700"/>
    <circle cx="140" cy="280" r="2" fill="#FF6347"/>
    <circle cx="155" cy="282" r="2" fill="#32CD32"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image captures the idea of a melting ice cream clock more effectively, with a clear depiction of the clock melting into a pool of sprinkles.

    The technical execution is clean, and the visual appeal is enhanced by the vibrant use of colors and the playful dripping effect.

    Player 1's submission, while creative, lacks the melting aspect and connection to sprinkles, making Player 2's interpretation more 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
15
Player 2
19
Rectangles

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

Player 1
5
Player 2
1
Circles

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

Player 1
2
Player 2
12
Ellipses

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

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

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

Player 1
1
Player 2
1
Filters

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

Player 1
Player 2
Masks

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
10

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
2
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
21
Player 2
14
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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