Back

SVG Drawing Match #1844

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Snail racing on rainbow trails"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <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="shellGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <radialGradient id="shellGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ADFF2F"/>
      <stop offset="100%" stop-color="#32CD32"/>
    </radialGradient>
    <radialGradient id="shellGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#1E90FF"/>
      <stop offset="100%" stop-color="#00008B"/>
    </radialGradient>
    <pattern id="trailPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="white" />
    </pattern>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#000000" flood-opacity="0.5"/>
    </filter>
  </defs>
  <rect width="300" height="300" fill="#f0f8ff"/>
  
  <!-- Rainbow Trails -->
  <path d="M50,250 C80,200 220,200 250,150" stroke="url(#rainbowGradient)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M70,260 C100,210 200,210 230,160" stroke="url(#rainbowGradient)" stroke-width="6" fill="none" stroke-linecap="round"/>
  <path d="M90,270 C120,220 180,220 210,170" stroke="url(#rainbowGradient)" stroke-width="4" fill="none" stroke-linecap="round"/>
  
  <!-- Snails -->
  <!-- Snail 1 -->
  <g filter="url(#shadow)">
    <circle cx="250" cy="150" r="15" fill="url(#shellGradient1)" stroke="#DAA520" stroke-width="2"/>
    <circle cx="250" cy="150" r="7" fill="#8B4513"/>
    <path d="M245,147 Q244,145 245,143" stroke="#8B4513" stroke-width="2" fill="none"/>
    <path d="M255,147 Q256,145 255,143" stroke="#8B4513" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Snail 2 -->
  <g filter="url(#shadow)">
    <circle cx="230" cy="160" r="12" fill="url(#shellGradient2)" stroke="#7CFC00" stroke-width="2"/>
    <circle cx="230" cy="160" r="5" fill="#556B2F"/>
    <path d="M225,157 Q224,155 225,153" stroke="#556B2F" stroke-width="1.5" fill="none"/>
    <path d="M235,157 Q236,155 235,153" stroke="#556B2F" stroke-width="1.5" fill="none"/>
  </g>
  
  <!-- Snail 3 -->
  <g filter="url(#shadow)">
    <circle cx="210" cy="170" r="10" fill="url(#shellGradient3)" stroke="#1E90FF" stroke-width="2"/>
    <circle cx="210" cy="170" r="4" fill="#00008B"/>
    <path d="M205,167 Q204,165 205,163" stroke="#00008B" stroke-width="1" fill="none"/>
    <path d="M215,167 Q216,165 215,163" stroke="#00008B" stroke-width="1" fill="none"/>
  </g>
  
  <!-- Ground -->
  <ellipse cx="150" cy="280" rx="160" ry="20" fill="#228B22" stroke="#006400" stroke-width="2"/>
  
  <!-- Extra Details: Dew Drops on Trails -->
  <circle cx="100" cy="200" r="2" fill="#ffffff" opacity="0.8"/>
  <circle cx="150" cy="180" r="2" fill="#ffffff" opacity="0.8"/>
  <circle cx="200" cy="160" r="2" fill="#ffffff" opacity="0.8"/>
  
  <!-- Decorative Elements: Flowers -->
  <g>
    <circle cx="60" cy="260" r="5" fill="#FF69B4"/>
    <circle cx="60" cy="260" r="2" fill="#FFD700"/>
    <circle cx="240" cy="140" r="5" fill="#FF69B4"/>
    <circle cx="240" cy="140" r="2" fill="#FFD700"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Rainbow trails -->
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #FF0000" />
      <stop offset="20%" style="stop-color: #FFA500" />
      <stop offset="40%" style="stop-color: #FFFF00" />
      <stop offset="60%" style="stop-color: #008000" />
      <stop offset="80%" style="stop-color: #0000FF" />
      <stop offset="100%" style="stop-color: #800080" />
    </linearGradient>
  </defs>
  
  <rect x="0" y="0" width="300" height="300" fill="url(#rainbowGradient)" />
  
  <!-- Snail body -->
  <circle cx="150" cy="150" r="20" fill="#8B4513" />
  <circle cx="170" cy="155" r="15" fill="#A0522D" />
  
  <!-- Snail shell -->
  <path d="M150 130 q 25 -15 50 0 q 5 10 -10 20 q -15 15 -40 10 q -15 -5 -20 -15 q -5 -10 20 -15" fill="#FFD700" />
  
  <!-- Snail eyes -->
  <circle cx="145" cy="145" r="2" fill="#000" />
  <circle cx="155" cy="145" r="2" fill="#000" />
  
  <!-- Snail antennae -->
  <line x1="145" y1="140" x2="140" y2="130" stroke="#8B4513" stroke-width="2" />
  <line x1="155" y1="140" x2="160" y2="130" stroke="#8B4513" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image creatively captures the idea of snail racing with dynamic rainbow trails, effectively using color and composition to suggest motion and energy.

    The technical execution is clear and visually engaging, adhering closely to the prompt.

    In contrast, Player 2's image lacks the same level of dynamism and creativity, with a simpler and less compelling composition.

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
25
Player 2
8
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
14
Player 2
4
Ellipses

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

Player 1
1
Player 2
Lines

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

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

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
4

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

Complexity Metrics

Path Commands

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

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