Back

SVG Drawing Match #2540

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing a cheetah on a winding rainbow road."

SVG by o4-mini medium (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>
    <linearGradient id="rainbow" x1="0" y1="0" x2="300" y2="0">
      <stop offset="0%"   stop-color="#e60000"/>
      <stop offset="14%"  stop-color="#ff7f00"/>
      <stop offset="28%"  stop-color="#ffff00"/>
      <stop offset="42%"  stop-color="#00cc00"/>
      <stop offset="56%"  stop-color="#0000cc"/>
      <stop offset="70%"  stop-color="#4b0082"/>
      <stop offset="84%"  stop-color="#8b00ff"/>
      <stop offset="100%" stop-color="#e60000"/>
    </linearGradient>
    <radialGradient id="shellGrad" cx="0.4" cy="0.4" r="0.6">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ffb6c1"/>
    </radialGradient>
    <linearGradient id="cheetahGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#ff8c00"/>
    </linearGradient>
  </defs>
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Sun -->
  <circle cx="260" cy="40" r="30" fill="#FFFD75" opacity="0.8"/>
  <!-- Winding Rainbow Road -->
  <path d="M-50,200 C50,150 100,250 200,150 300,200" fill="none" stroke="url(#rainbow)" stroke-width="40" stroke-linecap="round"/>
  <!-- Snail -->
  <g>
    <!-- Foot -->
    <ellipse cx="40" cy="198" rx="30" ry="8" fill="#8FBC8F" opacity="0.9"/>
    <!-- Shell Spiral -->
    <circle cx="50" cy="180" r="20" fill="url(#shellGrad)"/>
    <circle cx="50" cy="180" r="15" fill="none" stroke="#C71585" stroke-width="4"/>
    <path d="M55,180 A10,10 0 1,1 45,180 A5,5 0 1,0 50,180" fill="none" stroke="#C71585" stroke-width="3"/>
    <!-- Eye Stalks -->
    <line x1="40" y1="170" x2="40" y2="160" stroke="#8FBC8F" stroke-width="4" stroke-linecap="round"/>
    <line x1="60" y1="170" x2="60" y2="160" stroke="#8FBC8F" stroke-width="4" stroke-linecap="round"/>
    <circle cx="40" cy="158" r="3" fill="#000"/>
    <circle cx="60" cy="158" r="3" fill="#000"/>
  </g>
  <!-- Cheetah -->
  <g>
    <!-- Body -->
    <ellipse cx="240" cy="180" rx="25" ry="12" fill="url(#cheetahGrad)"/>
    <!-- Head -->
    <circle cx="220" cy="172" r="10" fill="url(#cheetahGrad)"/>
    <!-- Tail -->
    <path d="M260,185 C280,170 290,200 270,195" fill="none" stroke="url(#cheetahGrad)" stroke-width="4" stroke-linecap="round"/>
    <!-- Legs -->
    <path d="M230,192 L220,210" stroke="url(#cheetahGrad)" stroke-width="4" stroke-linecap="round"/>
    <path d="M250,192 L260,210" stroke="url(#cheetahGrad)" stroke-width="4" stroke-linecap="round"/>
    <!-- Spots -->
    <circle cx="230" cy="175" r="2" fill="#000"/>
    <circle cx="245" cy="180" r="2.5" fill="#000"/>
    <circle cx="255" cy="168" r="2" fill="#000"/>
    <circle cx="235" cy="185" r="1.8" fill="#000"/>
    <circle cx="260" cy="180" r="2.2" fill="#000"/>
    <circle cx="245" cy="165" r="1.6" fill="#000"/>
    <!-- Motion Lines -->
    <path d="M215,170 L200,160" stroke="#000" stroke-width="1.5" stroke-linecap="round" opacity="0.6"/>
    <path d="M225,178 L210,168" stroke="#000" stroke-width="1.5" stroke-linecap="round" opacity="0.6"/>
  </g>
  <!-- Clouds -->
  <g fill="#fff" opacity="0.7">
    <ellipse cx="100" cy="60" rx="30" ry="12"/>
    <ellipse cx="120" cy="50" rx="25" ry="10"/>
    <ellipse cx="80" cy="50" rx="20" ry="8"/>
    <ellipse cx="180" cy="80" rx="35" ry="14"/>
    <ellipse cx="205" cy="75" rx="25" ry="10"/>
    <ellipse cx="160" cy="75" rx="20" ry="8"/>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </linearGradient>
    <linearGradient id="roadGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.66%" stop-color="#FF7F00"/>
      <stop offset="33.33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.66%" stop-color="#0000FF"/>
      <stop offset="83.33%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8B00FF"/>
    </linearGradient>
    <radialGradient id="cheetahGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#F4A460"/>
      <stop offset="100%" stop-color="#8B4513"/>
    </radialGradient>
    <radialGradient id="snailGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#8FBC8F"/>
      <stop offset="100%" stop-color="#556B2F"/>
    </radialGradient>
  </defs>
  
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Winding Rainbow Road -->
  <path d="M50,250 C75,200 225,200 250,250" stroke="url(#roadGradient)" stroke-width="40" fill="none" stroke-linecap="round"/>
  <path d="M50,240 C75,190 225,190 250,240" stroke="white" stroke-width="10" fill="none" stroke-dasharray="15,15"/>
  
  <!-- Snail -->
  <g transform="translate(120, 220)">
    <circle cx="0" cy="0" r="10" fill="url(#snailGradient)" stroke="#654321" stroke-width="2"/>
    <path d="M-5,0 Q0,-10 5,0 Q0,-5 -5,0" fill="#8B4513"/>
    <ellipse cx="-7" cy="5" rx="2" ry="3" fill="#000"/>
    <ellipse cx="7" cy="5" rx="2" ry="3" fill="#000"/>
  </g>
  
  <!-- Cheetah -->
  <g transform="translate(180, 210) scale(1.2)">
    <ellipse cx="0" cy="0" rx="15" ry="8" fill="url(#cheetahGradient)" stroke="#000" stroke-width="1"/>
    <polygon points="15,0 20,-5 20,5" fill="#000"/>
    <circle cx="-5" cy="-3" r="2" fill="#fff"/>
    <circle cx="-5" cy="-3" r="1" fill="#000"/>
    <path d="M-10,5 Q-15,10 -10,15" stroke="#000" stroke-width="1" fill="none"/>
  </g>
  
  <!-- Motion Lines for Cheetah -->
  <path d="M180,210 L160,190" stroke="#FFD700" stroke-width="2" stroke-dasharray="5,5"/>
  <path d="M190,220 L170,200" stroke="#FFD700" stroke-width="2" stroke-dasharray="5,5"/>
  
  <!-- Sun -->
  <circle cx="270" cy="50" r="30" fill="yellow" />
  <radialGradient id="sunGradient" cx="0.5" cy="0.5" r="0.5">
    <stop offset="0%" stop-color="yellow"/>
    <stop offset="100%" stop-color="orange"/>
  </radialGradient>
  <circle cx="270" cy="50" r="25" fill="url(#sunGradient)" />
  
  <!-- Clouds -->
  <g fill="white" opacity="0.8">
    <ellipse cx="60" cy="60" rx="20" ry="10"/>
    <ellipse cx="80" cy="60" rx="20" ry="10"/>
    <ellipse cx="70" cy="50" rx="20" ry="10"/>
    <ellipse cx="200" cy="80" rx="15" ry="8"/>
    <ellipse cx="220" cy="80" rx="15" ry="8"/>
    <ellipse cx="210" cy="70" rx="15" ry="8"/>
  </g>
  
  <!-- Grass -->
  <rect y="250" width="300" height="50" fill="#228B22"/>
  
  <!-- Eyes and Details -->
  <g>
    <!-- Cheetah Spots -->
    <circle cx="-5" cy="-2" r="1" fill="#000"/>
    <circle cx="3" cy="2" r="1" fill="#000"/>
  </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 submission features a more dynamic representation of a racing scenario, with the inclusion of a racetrack design and better interaction between the snail and cheetah.

    The use of the checkered pattern enhances the adherence to the racing theme, and the composition feels more cohesive and visually engaging overall.

    Player 1's submission, while creative, lacks the same level of detail and execution in the racing concept.

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
30
Player 2
25
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
12
Player 2
7
Ellipses

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

Player 1
8
Player 2
9
Lines

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

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

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

Player 1
3
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
5
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
20

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
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
15
Player 2
13
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
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