Back

SVG Drawing Match #1352

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Melting Dali clock on a futuristic robot"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="robotGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#3a4766" />
      <stop offset="50%" stop-color="#2c3e50" />
      <stop offset="100%" stop-color="#1a2a38" />
    </linearGradient>
    <linearGradient id="clockGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f9d423" />
      <stop offset="100%" stop-color="#e14fad" />
    </linearGradient>
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    <filter id="meltEffect" x="-10%" y="-10%" width="120%" height="120%">
      <feTurbulence type="fractalNoise" baseFrequency="0.02" numOctaves="2" result="noise" />
      <feDisplacementMap in="SourceGraphic" in2="noise" scale="10" xChannelSelector="R" yChannelSelector="G" />
    </filter>
    <pattern id="circuitPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M0,10 h20 M10,0 v20" stroke="#3a4766" stroke-width="0.5" fill="none" />
      <circle cx="10" cy="10" r="2" fill="#5a87d0" opacity="0.5" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#121212" />
  
  <!-- Robot body -->
  <rect x="90" y="150" width="120" height="130" rx="10" fill="url(#robotGrad)" />
  <rect x="100" y="160" width="100" height="110" fill="url(#circuitPattern)" opacity="0.3" />
  
  <!-- Robot head -->
  <rect x="110" y="110" width="80" height="60" rx="5" fill="url(#robotGrad)" />
  <rect x="120" y="120" width="60" height="40" fill="url(#circuitPattern)" opacity="0.3" />
  
  <!-- Robot eyes -->
  <circle cx="135" cy="140" r="8" fill="#5a87d0" filter="url(#glow)" />
  <circle cx="165" cy="140" r="8" fill="#5a87d0" filter="url(#glow)" />
  <circle cx="135" cy="140" r="3" fill="white" />
  <circle cx="165" cy="140" r="3" fill="white" />
  
  <!-- Robot antenna -->
  <line x1="150" y1="110" x2="150" y2="90" stroke="#3a4766" stroke-width="5" />
  <circle cx="150" cy="85" r="5" fill="#e14fad" filter="url(#glow)" />
  
  <!-- Robot arms -->
  <path d="M90,170 C60,160 40,190 30,160" stroke="#3a4766" stroke-width="8" fill="none" />
  <path d="M210,170 C240,160 260,190 270,160" stroke="#3a4766" stroke-width="8" fill="none" />
  
  <!-- Melting Dali clock -->
  <g filter="url(#meltEffect)">
    <ellipse cx="150" cy="70" rx="40" ry="40" fill="url(#clockGrad)" />
    <path d="M150,70 C150,70 170,110 160,130 C150,150 130,160 130,180 C130,200 140,220 150,240" 
          fill="none" stroke="url(#clockGrad)" stroke-width="35" stroke-linecap="round" />
  </g>
  
  <!-- Clock face and details -->
  <circle cx="150" cy="70" r="35" fill="white" opacity="0.8" filter="url(#meltEffect)" />
  <circle cx="150" cy="70" r="3" fill="#2c3e50" />
  
  <!-- Clock hands -->
  <g filter="url(#meltEffect)">
    <line x1="150" y1="70" x2="130" y2="50" stroke="#2c3e50" stroke-width="3" stroke-linecap="round" />
    <line x1="150" y1="70" x2="170" y2="85" stroke="#2c3e50" stroke-width="2" stroke-linecap="round" />
  </g>
  
  <!-- Clock numbers -->
  <g filter="url(#meltEffect)" font-family="Arial" font-weight="bold" font-size="8" fill="#2c3e50">
    <text x="148" y="45" text-anchor="middle">12</text>
    <text x="175" y="73" text-anchor="middle">3</text>
    <text x="148" y="100" text-anchor="middle">6</text>
    <text x="122" y="73" text-anchor="middle">9</text>
  </g>
  
  <!-- Futuristic elements -->
  <circle cx="90" cy="190" r="8" fill="#5a87d0" opacity="0.8" filter="url(#glow)" />
  <circle cx="210" cy="190" r="8" fill="#5a87d0" opacity="0.8" filter="url(#glow)" />
  <rect x="120" y="200" width="60" height="10" rx="5" fill="#5a87d0" opacity="0.8" filter="url(#glow)" />
  
  <!-- Circuit lines -->
  <path d="M135,148 L135,160 L120,180 L150,180 L180,160 L165,148" stroke="#5a87d0" stroke-width="1" fill="none" />
  
  <!-- Dripping effect -->
  <path d="M160,130 C165,140 170,150 165,160 M140,150 C145,160 150,170 145,180" 
        stroke="url(#clockGrad)" stroke-width="5" fill="none" opacity="0.8" />
  
  <!-- Additional surrealist elements -->
  <path d="M30,100 C60,80 90,120 120,100" stroke="#e14fad" stroke-width="2" fill="none" opacity="0.5" />
  <path d="M180,100 C210,80 240,120 270,100" stroke="#e14fad" stroke-width="2" fill="none" opacity="0.5" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,140,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,69,0);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="robotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(135,206,250);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(70,130,180);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="eyeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="#1E1E1E"/>
  <g transform="translate(150,150)">
    <ellipse cx="0" cy="0" rx="130" ry="90" fill="url(#clockGradient)" stroke="black" stroke-width="3" transform="rotate(-15)"/>
    <path d="M-65,-15 Q-70,20 -35,60 T50,55 Q70,45 55,35 T20,0 Q5,-10 -15,-15 Z"
      fill="url(#clockGradient)" stroke="black" stroke-width="2"/>
    <circle cx="-20" cy="-10" r="5" fill="black"/>
    <rect x="-15" y="-5" width="3" height="20" fill="black" transform="rotate(-15)"/>
    <polygon points="-5,-2 0,-70 5,-2" fill="black"/>
    <text x="-10" y="-55" font-family="Verdana" font-size="12" fill="black">12</text>
    <text x="55" y="5" font-family="Verdana" font-size="12" fill="black">3</text>
    <text x="-8" y="65" font-family="Verdana" font-size="12" fill="black">6</text>
    <text x="-70" y="-5" font-family="Verdana" font-size="12" fill="black">9</text>
  </g>
  <g transform="translate(150,150)">
    <path d="M-75,-5 Q-80,-20 -130,-60 S-120,-10 -75,5 Z" fill="url(#robotGradient)"/>
    <ellipse cx="80" cy="-40" rx="30" ry="45" fill="url(#robotGradient)" stroke="#4682B4" stroke-width="2"/>
    <circle cx="80" cy="-55" r="10" fill="url(#eyeGradient)" />
    <rect x="65" y="-40" width="30" height="8" fill="url(#robotGradient)" />
    <rect x="60" y="-40" width="40" height="5" fill="black" />
    <ellipse cx="80" cy="80" rx="25" ry="15" fill="url(#robotGradient)" />
    <line x1="80" y1="65" x2="80" y2="95" stroke="black" stroke-width="2"/>
    <line x1="60" y1="80" x2="100" y2="80" stroke="black" stroke-width="2"/>
  </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 submission effectively combines the surrealism of a melting Dali clock with the futuristic aspect of a robot, showcasing smooth gradients and a cohesive design.

    The melting effect is clearly represented, and the integration with the robot's features is imaginative and visually appealing.

    Player 2's image, while creative, lacks the same level of detail and technical quality, making it less visually engaging.

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
28
Player 2
14
Rectangles

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

Player 1
6
Player 2
4
Circles

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

Player 1
10
Player 2
2
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
3

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

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
11
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
5
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
4

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