Back

SVG Drawing Match #2214

May 08, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing a cheetah on a cloud track."

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky Background with Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#6ab7ff" />
      <stop offset="100%" stop-color="#c4e3ff" />
    </linearGradient>
    
    <!-- Cloud Pattern -->
    <pattern id="cloudPattern" width="300" height="100" patternUnits="userSpaceOnUse">
      <path d="M15,50 Q25,35 40,45 Q50,25 65,40 Q80,20 95,40 Q110,30 120,50" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="15" />
    </pattern>
    
    <!-- Cheetah Spots Pattern -->
    <pattern id="cheetahPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="4" fill="#111" />
    </pattern>
    
    <!-- Finish Line Pattern -->
    <pattern id="finishPattern" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
      <rect width="5" height="10" fill="black"/>
    </pattern>
    
    <!-- Glow Filter -->
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Snail Shell Gradient -->
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#8B4513" />
      <stop offset="50%" stop-color="#CD853F" />
      <stop offset="100%" stop-color="#D2B48C" />
    </linearGradient>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Distant Mountains -->
  <path d="M0,150 Q50,100 100,140 Q150,80 200,130 Q250,90 300,150 L300,300 L0,300 Z" fill="#a4c2f4" opacity="0.5" />
  
  <!-- Main Cloud Track -->
  <path d="M-20,180 Q30,150 80,170 Q130,150 180,180 Q230,160 280,190 Q330,170 380,190" fill="white" stroke="#e6e6e6" stroke-width="2" filter="url(#glow)" />
  <path d="M-20,180 Q30,150 80,170 Q130,150 180,180 Q230,160 280,190 Q330,170 380,190" fill="url(#cloudPattern)" opacity="0.7" />
  
  <!-- Start Line -->
  <rect x="20" y="165" width="10" height="30" fill="#4285F4" rx="2" />
  
  <!-- Finish Line -->
  <rect x="270" y="165" width="10" height="30" fill="url(#finishPattern)" rx="2" />
  
  <!-- Snail -->
  <g transform="translate(50, 170) scale(0.8)">
    <!-- Shell -->
    <path d="M0,0 a20,20 0 1,0 40,0 a20,20 0 1,0 -40,0" fill="url(#shellGradient)" stroke="#5D4037" stroke-width="1" transform="rotate(45)" />
    <path d="M20,20 a15,15 0 1,0 30,0 a15,15 0 1,0 -30,0" fill="none" stroke="#8D6E63" stroke-width="1.5" transform="rotate(45) translate(5, -5)" />
    <path d="M20,20 a10,10 0 1,0 20,0 a10,10 0 1,0 -20,0" fill="none" stroke="#8D6E63" stroke-width="1.5" transform="rotate(45) translate(10, -10)" />
    
    <!-- Body -->
    <path d="M30,20 C40,20 45,30 50,35 L55,35 C60,35 60,25 65,25" fill="#8D6E63" stroke="#5D4037" stroke-width="1" />
    
    <!-- Eyes on Stalks -->
    <path d="M65,25 C68,20 70,15 68,10" fill="none" stroke="#5D4037" stroke-width="1.5" />
    <path d="M65,25 C70,22 75,20 77,15" fill="none" stroke="#5D4037" stroke-width="1.5" />
    <circle cx="68" cy="10" r="2" fill="black" />
    <circle cx="77" cy="15" r="2" fill="black" />
    
    <!-- Racing Number -->
    <circle cx="20" cy="20" r="8" fill="white" stroke="#5D4037" transform="rotate(45)" />
    <text x="20" y="20" font-family="Arial" font-size="10" text-anchor="middle" dominant-baseline="middle" transform="rotate(45)" fill="#5D4037" font-weight="bold">1</text>
    
    <!-- Slime Trail -->
    <path d="M0,30 C10,32 20,28 30,30" fill="none" stroke="#81C784" stroke-width="2" stroke-linecap="round" opacity="0.7" />
    
    <!-- Sweat Drops -->
    <circle cx="45" cy="25" r="1" fill="#81d4fa" />
    <circle cx="50" cy="28" r="1" fill="#81d4fa" />
  </g>
  
  <!-- Cheetah (Racing) -->
  <g transform="translate(180, 150) scale(0.9)">
    <!-- Body -->
    <path d="M-20,40 C-10,35 0,35 10,40 C20,45 30,45 40,40 C50,35 60,35 70,30" fill="#F9A825" stroke="#E65100" stroke-width="1" />
    <path d="M-20,40 C-10,35 0,35 10,40 C20,45 30,45 40,40 C50,35 60,35 70,30" fill="url(#cheetahPattern)" fill-opacity="0.7" />
    
    <!-- Legs (Running Motion) -->
    <path d="M0,40 L-5,55" stroke="#E65100" stroke-width="2" />
    <path d="M20,45 L25,60" stroke="#E65100" stroke-width="2" />
    <path d="M40,40 L35,55" stroke="#E65100" stroke-width="2" />
    <path d="M60,35 L65,50" stroke="#E65100" stroke-width="2" />
    
    <!-- Tail -->
    <path d="M-20,40 C-30,30 -35,25 -30,20" fill="none" stroke="#E65100" stroke-width="2" />
    
    <!-- Head -->
    <path d="M70,30 C80,25 90,25 95,30" fill="#F9A825" stroke="#E65100" stroke-width="1" />
    <path d="M95,30 C97,28 100,28 102,30" fill="#F9A825" stroke="#E65100" stroke-width="1" />
    
    <!-- Eye -->
    <circle cx="97" cy="28" r="1.5" fill="black" />
    
    <!-- Mouth -->
    <path d="M100,32 C98,33 96,33 94,32" fill="none" stroke="#E65100" stroke-width="0.5" />
    
    <!-- Racing Number -->
    <circle cx="30" cy="35" r="8" fill="white" stroke="#E65100" />
    <text x="30" y="35" font-family="Arial" font-size="10" text-anchor="middle" dominant-baseline="middle" fill="#E65100" font-weight="bold">2</text>
    
    <!-- Motion Lines -->
    <path d="M75,30 L85,28" stroke="#E65100" stroke-width="0.5" stroke-dasharray="2,1" />
    <path d="M75,32 L85,30" stroke="#E65100" stroke-width="0.5" stroke-dasharray="2,1" />
    <path d="M75,34 L85,32" stroke="#E65100" stroke-width="0.5" stroke-dasharray="2,1" />
  </g>
  
  <!-- Spectator Clouds -->
  <g transform="translate(150, 120)">
    <path d="M-100,0 Q-80,-20 -60,-10 Q-40,-30 -20,-10 Q0,-20 20,0" fill="white" opacity="0.8" />
    <path d="M40,10 Q60,-10 80,0 Q100,-20 120,0 Q140,-10 160,10" fill="white" opacity="0.8" />
    
    <!-- Cloud Face 1 -->
    <circle cx="-60" cy="-5" r="2" fill="#333" />
    <circle cx="-40" cy="-5" r="2" fill="#333" />
    <path d="M-60,5 Q-50,10 -40,5" fill="none" stroke="#333" stroke-width="1" />
    
    <!-- Cloud Face 2 -->
    <circle cx="80" cy="5" r="2" fill="#333" />
    <circle cx="100" cy="5" r="2" fill="#333" />
    <path d="M80,15 Q90,20 100,15" fill="none" stroke="#333" stroke-width="1" />
  </g>
  
  <!-- Sun -->
  <g transform="translate(250, 50)">
    <circle cx="0" cy="0" r="15" fill="#FFD54F" />
    <circle cx="0" cy="0" r="10" fill="#FFECB3" />
    
    <!-- Sun Rays -->
    <g stroke="#FFD54F" stroke-width="2">
      <path d="M0,-20 L0,-30" />
      <path d="M0,20 L0,30" />
      <path d="M-20,0 L-30,0" />
      <path d="M20,0 L30,0" />
      <path d="M-14,-14 L-21,-21" />
      <path d="M14,14 L21,21" />
      <path d="M-14,14 L-21,21" />
      <path d="M14,-14 L21,-21" />
    </g>
    
    <!-- Sun Face -->
    <circle cx="-4" cy="-2" r="2" fill="#E65100" />
    <circle cx="4" cy="-2" r="2" fill="#E65100" />
    <path d="M-5,5 Q0,8 5,5" fill="none" stroke="#E65100" stroke-width="1.5" />
  </g>
  
  <!-- Race Flags -->
  <g transform="translate(20, 150)">
    <rect x="0" y="-30" width="2" height="30" fill="#333" />
    <path d="M2,-30 L12,-25 L2,-20" fill="red" />
  </g>
  
  <g transform="translate(270, 150)">
    <rect x="0" y="-30" width="2" height="30" fill="#333" />
    <rect x="2" y="-30" width="10" height="10" fill="black" />
  </g>
  
  <!-- Title Banner -->
  <path d="M75,80 L225,80 L235,90 L225,100 L75,100 L65,90 L75,80 Z" fill="#4FC3F7" stroke="#0288D1" stroke-width="2" />
  <text x="150" y="94" font-family="Arial" font-size="12" text-anchor="middle" fill="white" font-weight="bold">CLOUD RACE CHAMPIONSHIP</text>
</svg>
SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0FFFF"/>
    </linearGradient>
    <radialGradient id="shellGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFDD55"/>
      <stop offset="100%" stop-color="#FFAA00"/>
    </radialGradient>
    <pattern id="cheetahSpots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="#000"/>
      <circle cx="15" cy="15" r="3" fill="#000"/>
    </pattern>
    <filter id="blurCloud">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3"/>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <g id="cloudTrack" fill="#fff" filter="url(#blurCloud)">
    <ellipse cx="150" cy="200" rx="160" ry="30"/>
    <ellipse cx="150" cy="230" rx="160" ry="30"/>
    <ellipse cx="150" cy="260" rx="160" ry="30"/>
  </g>
  <g id="snail" transform="translate(50,180)">
    <path d="M10 30 q40 -20 80 0 q-10 -30 -40 -20 q-40 -20 -40 20" fill="url(#shellGrad)" stroke="#CC8800" stroke-width="2"/>
    <circle cx="60" cy="30" r="25" fill="none" stroke="#CC8800" stroke-width="4"/>
    <path d="M0 30 q20 -10 40 0 q-20 10 -40 0" fill="#C4A484" stroke="#8B5742" stroke-width="2"/>
    <line x1="0" y1="30" x2="-10" y2="15" stroke="#8B5742" stroke-width="3"/>
    <line x1="0" y1="30" x2="-10" y2="45" stroke="#8B5742" stroke-width="3"/>
    <circle cx="5" cy="15" r="3" fill="#000"/>
    <circle cx="5" cy="45" r="3" fill="#000"/>
  </g>
  <g id="cheetah" transform="scale(0.8) translate(180,130)">
    <path d="M50 40 q30 -20 60 0 l10 20 q-40 -10 -70 10 z" fill="#FFD700"/>
    <rect x="50" y="40" width="60" height="20" fill="url(#cheetahSpots)"/>
    <path d="M55 60 l-15 20 q10 -5 20 5 l15 -20 z" fill="#FFD700"/>
    <path d="M110 60 l15 20 q-10 -5 -20 5 l-15 -20 z" fill="#FFD700"/>
    <circle cx="60" cy="30" r="8" fill="#000"/>
    <circle cx="100" cy="30" r="8" fill="#000"/>
    <path d="M60 30 q20 -10 40 0" stroke="#000" stroke-width="2" fill="none"/>
    <path d="M80 40 l10 10" stroke="#000" stroke-width="2"/>
    <path d="M110 60 q30 10 40 30" stroke="#FFD700" stroke-width="4" fill="none"/>
    <path d="M50 60 q-30 10 -40 30" stroke="#FFD700" stroke-width="4" fill="none"/>
    <line x1="50" y1="60" x2="20" y2="90" stroke="#FFD700" stroke-width="4"/>
    <line x1="110" y1="60" x2="150" y2="90" stroke="#FFD700" stroke-width="4"/>
  </g>
  <g stroke="#fff" stroke-width="2" opacity="0.6">
    <path d="M50 180 q80 -40 160 0" fill="none"/>
    <path d="M50 200 q80 -40 160 0" fill="none"/>
  </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 has more creative elements and stronger adherence to the prompt with a detailed cloud track, a decorated race setting, and clear representation of both the snail and cheetah.

    The inclusion of a championship banner and playful clouds enhances the visual appeal and storytelling.

    Player 2, while visually clean, lacks the same level of detail and narrative elements, making it less engaging overall.

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
62
Player 2
27
Rectangles

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

Player 1
7
Player 2
2
Circles

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

Player 1
16
Player 2
7
Ellipses

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

Player 1
Player 2
3
Lines

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

Player 1
Player 2
4
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
39
Player 2
11
Groups

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

Player 1
7
Player 2
4

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
28
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
24
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
11
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
112
Player 2
34
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
6
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
3
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