Back

SVG Drawing Match #2539

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two snails racing on a colorful checkered speedway."

SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="trackGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff9a9e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fad0c4;stop-opacity:1" />
    </linearGradient>
    <pattern id="checkered" patternUnits="userSpaceOnUse" width="30" height="30">
      <rect width="15" height="15" fill="#ffefd5"/>
      <rect x="15" y="15" width="15" height="15" fill="#ff7f50"/>
    </pattern>
    <radialGradient id="shellGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#6a11cb;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2575fc;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="shellGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff512f;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#dd2476;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="bodyGradient1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#34e89e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0f3443;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="bodyGradient2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ffecd2;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fcb69f;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#trackGradient)" />
  <rect width="300" height="300" fill="url(#checkered)" opacity="0.8" />
  
  <!-- First Snail -->
  <g transform="translate(80,200) scale(0.8)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#bodyGradient1)" />
    <!-- Shell -->
    <circle cx="-10" cy="-15" r="10" fill="url(#shellGradient1)" stroke="#4b0082" stroke-width="1.5"/>
    <!-- Eyes -->
    <circle cx="10" cy="-5" r="2" fill="#fff"/>
    <circle cx="12" cy="-7" r="1" fill="#000"/>
    <circle cx="-10" cy="-5" r="2" fill="#fff"/>
    <circle cx="-8" cy="-7" r="1" fill="#000"/>
    <!-- Tentacles -->
    <path d="M5,-5 Q10,-10 15,-5" stroke="#6a11cb" stroke-width="1" fill="none"/>
    <path d="M-5,-5 Q-10,-10 -15,-5" stroke="#6a11cb" stroke-width="1" fill="none"/>
  </g>
  
  <!-- Second Snail -->
  <g transform="translate(220,180) scale(0.8)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#bodyGradient2)" />
    <!-- Shell -->
    <circle cx="-10" cy="-15" r="10" fill="url(#shellGradient2)" stroke="#8b0000" stroke-width="1.5"/>
    <!-- Eyes -->
    <circle cx="10" cy="-5" r="2" fill="#fff"/>
    <circle cx="12" cy="-7" r="1" fill="#000"/>
    <circle cx="-10" cy="-5" r="2" fill="#fff"/>
    <circle cx="-8" cy="-7" r="1" fill="#000"/>
    <!-- Tentacles -->
    <path d="M5,-5 Q10,-10 15,-5" stroke="#ff512f" stroke-width="1" fill="none"/>
    <path d="M-5,-5 Q-10,-10 -15,-5" stroke="#ff512f" stroke-width="1" fill="none"/>
  </g>
  
  <!-- Motion Lines -->
  <g>
    <path d="M80,200 Q90,190 100,200" stroke="#ffffff" stroke-width="0.5" stroke-dasharray="2,2" />
    <path d="M220,180 Q230,170 240,180" stroke="#ffffff" stroke-width="0.5" stroke-dasharray="2,2" />
  </g>
  
  <!-- Checkered Speedway Highlights -->
  <g opacity="0.5">
    <line x1="0" y1="0" x2="300" y2="300" stroke="#ffffff" stroke-width="1"/>
    <line x1="300" y1="0" x2="0" y2="300" stroke="#ffffff" stroke-width="1"/>
  </g>
</svg>
SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Vibrant checkered speedway -->
  <defs>
    <pattern id="checkered" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="10" height="10" fill="#ffcc66"/>
      <rect x="10" y="10" width="10" height="10" fill="#ffcc66"/>
      <rect width="10" height="10" fill="#66ccff"/>
      <rect x="10" y="10" width="10" height="10" fill="#66ccff"/>
    </pattern>
    <!-- Gradients for snails -->
    <linearGradient id="bodyGradient1" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8b5e3c"/>
      <stop offset="100%" stop-color="#4a2f1f"/>
    </linearGradient>
    <linearGradient id="shellGradient1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#ff8c00"/>
    </linearGradient>
    <linearGradient id="bodyGradient2" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#6b8e23"/>
      <stop offset="100%" stop-color="#3b5e0d"/>
    </linearGradient>
    <linearGradient id="shellGradient2" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff69b4"/>
      <stop offset="100%" stop-color="#c71585"/>
    </linearGradient>
  </defs>
  <!-- Speedway background -->
  <rect width="300" height="300" fill="url(#checkered)" stroke="#333" stroke-width="2"/>
  
  <!-- Snail 1 -->
  <!-- Body -->
  <ellipse cx="100" cy="180" rx="20" ry="10" fill="url(#bodyGradient1)" />
  <ellipse cx="100" cy="170" rx="18" ry="8" fill="#4a2f1f" />
  <!-- Head -->
  <circle cx="80" cy="170" r="5" fill="#4a2f1f" />
  <!-- Antennae -->
  <line x1="80" y1="170" x2="75" y2="165" stroke="#4a2f1f" stroke-width="1.5"/>
  <line x1="80" y1="170" x2="85" y2="165" stroke="#4a2f1f" stroke-width="1.5"/>
  <!-- Shell -->
  <ellipse cx="100" cy="170" rx="10" ry="15" fill="url(#shellGradient1)" stroke="#b8860b" stroke-width="1"/>
  <!-- Spiral pattern on shell (artistic) -->
  <path d="M 100 170
           m -10 0
           a 10 10 0 1 0 20 0
           a 10 10 0 1 0 -20 0
           M 100 155
           a 10 15 0 0 1 0 30" fill="none" stroke="#8b5e3c" stroke-width="1"/>
  
  <!-- Snail 2 -->
  <!-- Body -->
  <ellipse cx="200" cy="130" rx="25" ry="12" fill="url(#bodyGradient2)" />
  <ellipse cx="200" cy="125" rx="23" ry="10" fill="#3b5e0d" />
  <!-- Head -->
  <circle cx="220" cy="125" r="6" fill="#3b5e0d" />
  <!-- Antennae -->
  <line x1="220" y1="125" x2="225" y2="120" stroke="#3b5e0d" stroke-width="1.5"/>
  <line x1="220" y1="125" x2="215" y2="120" stroke="#3b5e0d" stroke-width="1.5"/>
  <!-- Shell -->
  <ellipse cx="200" cy="125" rx="12" ry="18" fill="url(#shellGradient2)" stroke="#c71585" stroke-width="1"/>
  <!-- Spiral pattern on shell (artistic) -->
  <path d="M 200 125
           m -12 0
           a 12 18 0 1 0 24 0
           a 12 18 0 1 0 -24 0
           M 200 107
           a 12 18 0 0 1 0 36" fill="none" stroke="#8b5e3c" stroke-width="1"/>
  
  <!-- Movement lines - artistic speed trails -->
  <path d="M 80 170 Q 70 155 100 180" stroke="#aaa" stroke-dasharray="3,3" stroke-width="1"/>
  <path d="M 200 125 Q 210 110 220 125" stroke="#aaa" stroke-dasharray="3,3" stroke-width="1"/>
  
  <!-- Optional: Dust clouds or motion effects for artistic flair -->
  <circle cx="90" cy="160" r="3" fill="#ccc" opacity="0.5"/>
  <circle cx="210" cy="115" r="2.5" fill="#ccc" opacity="0.5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4.1 nano (2025-04-14) Player 2

Judge's Analysis

    Player 2's submission features a more dynamic and visually striking checkered pattern with a vibrant blue and black contrast, enhancing the racing theme.

    The snails are more distinct and colorful, adding clarity and creativity to the composition compared to Player 1's simpler and less visually engaging design.

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
24
Player 2
23
Rectangles

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

Player 1
4
Player 2
5
Circles

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

Player 1
10
Player 2
4
Ellipses

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

Player 1
2
Player 2
6
Lines

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

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

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
14

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
12
Player 2
16
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
6
Player 2
5
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