Back

SVG Drawing Match #127

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock shaped like a melting ice cream cone, sprinkles marking the hours"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <defs>
    <radialGradient id="bg-gradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffe8f0" />
      <stop offset="100%" stop-color="#c9f0ff" />
    </radialGradient>
    
    <!-- Drip pattern -->
    <pattern id="drip-pattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M0,0 Q10,15 20,0" fill="none" stroke="#ffcce0" stroke-width="3" />
    </pattern>
    
    <!-- Filter for melting effect -->
    <filter id="melt-blur" x="-10%" y="-10%" width="120%" height="120%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" />
      <feDisplacementMap in="SourceGraphic" scale="5" />
    </filter>
    
    <!-- Ice cream cone texture -->
    <pattern id="cone-texture" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
      <rect width="5" height="10" fill="#e0b472" />
      <rect x="5" width="5" height="10" fill="#d6a967" />
    </pattern>
  </defs>
  
  <!-- Background circle -->
  <circle cx="150" cy="150" r="145" fill="url(#bg-gradient)" />
  
  <!-- Outer clock face -->
  <circle cx="150" cy="150" r="120" fill="#ffe2f5" stroke="#ffb6e1" stroke-width="4" />
  
  <!-- Melting ice cream main body -->
  <path d="M150,50 
           C190,50 220,80 220,120 
           C220,170 190,200 160,210
           C180,220 200,240 180,260
           C160,280 130,240 150,230
           C130,240 105,220 100,260
           C95,290 70,270 80,250
           C90,230 110,210 120,210
           C90,200 80,170 80,120
           C80,80 110,50 150,50Z" 
           fill="#ffcce0" stroke="#ff9dce" stroke-width="2" filter="url(#melt-blur)"/>
  
  <!-- Dripping effect -->
  <path d="M110,210 Q100,240 90,250" fill="none" stroke="#ffb6e1" stroke-width="5" stroke-linecap="round" />
  <path d="M160,210 Q170,250 180,260" fill="none" stroke="#ffb6e1" stroke-width="5" stroke-linecap="round" />
  <path d="M135,210 Q130,260 125,270" fill="none" stroke="#ffb6e1" stroke-width="5" stroke-linecap="round" />
  
  <!-- Ice cream cone -->
  <path d="M120,210 L150,290 L180,210" fill="url(#cone-texture)" stroke="#c99d62" stroke-width="2" />
  <path d="M120,210 L150,290 L180,210" fill="url(#drip-pattern)" fill-opacity="0.1" />
  
  <!-- Clock hands -->
  <g id="hands" transform="translate(150, 150)">
    <!-- Hour hand -->
    <line x1="0" y1="0" x2="0" y2="-45" stroke="#ff4da6" stroke-width="5" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="43200s" repeatCount="indefinite" />
    </line>
    <!-- Minute hand -->
    <line x1="0" y1="0" x2="0" y2="-70" stroke="#ff4da6" stroke-width="3" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="3600s" repeatCount="indefinite" />
    </line>
    <!-- Second hand -->
    <line x1="0" y1="0" x2="0" y2="-80" stroke="#ff0066" stroke-width="1.5" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="60s" repeatCount="indefinite" />
    </line>
    <!-- Center dot -->
    <circle cx="0" cy="0" r="6" fill="#ff0066" />
  </g>
  
  <!-- Sprinkle hour markers -->
  <g id="hour-markers">
    <!-- 12 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ff6699" transform="rotate(0, 150, 150)" />
    <!-- 1 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ff9900" transform="rotate(30, 150, 150)" />
    <!-- 2 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ffcc00" transform="rotate(60, 150, 150)" />
    <!-- 3 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#33cc33" transform="rotate(90, 150, 150)" />
    <!-- 4 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#00ccff" transform="rotate(120, 150, 150)" />
    <!-- 5 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#3366ff" transform="rotate(150, 150, 150)" />
    <!-- 6 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#9933ff" transform="rotate(180, 150, 150)" />
    <!-- 7 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ff33cc" transform="rotate(210, 150, 150)" />
    <!-- 8 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ff6699" transform="rotate(240, 150, 150)" />
    <!-- 9 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ff9900" transform="rotate(270, 150, 150)" />
    <!-- 10 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#ffcc00" transform="rotate(300, 150, 150)" />
    <!-- 11 o'clock -->
    <rect x="145" y="50" width="10" height="20" rx="3" fill="#33cc33" transform="rotate(330, 150, 150)" />
  </g>
  
  <!-- Extra sprinkles -->
  <g id="random-sprinkles">
    <rect x="130" y="80" width="8" height="15" rx="2" fill="#ff6699" transform="rotate(15, 130, 80)" />
    <rect x="170" y="90" width="8" height="15" rx="2" fill="#33cc33" transform="rotate(75, 170, 90)" />
    <rect x="110" y="120" width="8" height="15" rx="2" fill="#00ccff" transform="rotate(120, 110, 120)" />
    <rect x="180" y="150" width="8" height="15" rx="2" fill="#ff9900" transform="rotate(-45, 180, 150)" />
    <rect x="140" y="170" width="8" height="15" rx="2" fill="#9933ff" transform="rotate(200, 140, 170)" />
    <rect x="100" y="160" width="8" height="15" rx="2" fill="#ff33cc" transform="rotate(60, 100, 160)" />
    <rect x="190" y="130" width="8" height="15" rx="2" fill="#ffcc00" transform="rotate(100, 190, 130)" />
    <rect x="160" y="110" width="8" height="15" rx="2" fill="#3366ff" transform="rotate(-30, 160, 110)" />
  </g>
  
  <!-- Melting drops at the bottom -->
  <circle cx="150" cy="290" r="8" fill="#ffcce0" />
  <circle cx="130" cy="285" r="6" fill="#ffcce0" />
  <circle cx="170" cy="288" r="7" fill="#ffcce0" />
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="coneGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#d2b48c"/>
      <stop offset="100%" stop-color="#8b4513"/>
    </linearGradient>
    <radialGradient id="iceCreamGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </radialGradient>
  </defs>
  
  <!-- Cone -->
  <polygon points="100,200 200,200 150,300" fill="url(#coneGradient)" />
  
  <!-- Melting Ice Cream -->
  <path d="M90,160 
           Q150,50 210,160 
           Q190,180 170,160 
           Q150,180 130,160 
           Q110,180 90,160 Z" 
        fill="url(#iceCreamGradient)" />
  
  <!-- Sprinkles for Hours -->
  <g transform="translate(150,160)">
    <g>
      <rect x="-2" y="-60" width="4" height="12" fill="#FF4081" transform="rotate(0)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#8E24AA" transform="rotate(30)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#00BCD4" transform="rotate(60)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#4CAF50" transform="rotate(90)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#FFC107" transform="rotate(120)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#FB8C00" transform="rotate(150)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#E91E63" transform="rotate(180)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#3F51B5" transform="rotate(210)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#FF5722" transform="rotate(240)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#009688" transform="rotate(270)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#CDDC39" transform="rotate(300)" />
      <rect x="-2" y="-60" width="4" height="12" fill="#795548" transform="rotate(330)" />
    </g>
  </g>
  
  <!-- Clock Hands -->
  <g transform="translate(150,160)">
    <!-- Hour hand -->
    <line x1="0" y1="0" x2="0" y2="-30" stroke="#000" stroke-width="4" transform="rotate(300)" />
    <!-- Minute hand -->
    <line x1="0" y1="0" x2="0" y2="-45" stroke="#000" stroke-width="2" transform="rotate(60)" />
    <!-- Center Circle -->
    <circle cx="0" cy="0" r="4" fill="#000" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image captures the concept of a melting ice cream cone more vividly, with the pink ice cream shape and the sprinkles effectively marking the hours.

    The design is colorful and playful, adhering closely to the prompt.

    While Player 2's image is more minimalistic, it lacks the melting effect and vibrant visual appeal presented by Player 1.

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
38
Player 2
17
Rectangles

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

Player 1
22
Player 2
12
Circles

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

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

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

Player 1
Player 2
1
Paths

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

Player 1
7
Player 2
1
Groups

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
17

Interactivity Metrics

Animations

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

Player 1
3
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
21
Player 2
16

Complexity Metrics

Path Commands

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

Player 1
25
Player 2
6
Max Group Nesting

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

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