Back

SVG Drawing Match #2453

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing against a cheetah on a winding rainbow track."

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff0000"/>
      <stop offset="17%" style="stop-color:#ff8000"/>
      <stop offset="33%" style="stop-color:#ffff00"/>
      <stop offset="50%" style="stop-color:#00ff00"/>
      <stop offset="67%" style="stop-color:#0080ff"/>
      <stop offset="83%" style="stop-color:#4b0082"/>
      <stop offset="100%" style="stop-color:#8f00ff"/>
    </linearGradient>
    <radialGradient id="snailShell">
      <stop offset="0%" stop-color="#cd853f"/>
      <stop offset="100%" stop-color="#8b4513"/>
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87ceeb"/>
  
  <!-- Racing Track -->
  <path d="M 20,150 C 50,50 250,250 280,150" stroke="url(#rainbow)" stroke-width="30" fill="none"/>
  
  <!-- Cheetah -->
  <g transform="translate(180,130) scale(0.8)">
    <path d="M 0,0 C 20,-10 40,0 50,10 L 60,0 L 70,10 C 80,0 90,10 100,20" fill="#ffd700" stroke="#000" stroke-width="2"/>
    <ellipse cx="20" cy="0" rx="15" ry="12" fill="#ffd700" stroke="#000"/>
    <circle cx="15" cy="-2" r="2" fill="#000"/>
    <path d="M 30,-5 L 35,-8 M 30,5 L 35,8" stroke="#000" stroke-width="2"/>
    <path d="M 0,0 Q -10,10 -20,0" fill="#ffd700" stroke="#000" stroke-width="2"/>
    <path d="M 50,10 Q 60,30 40,20" fill="#000" stroke="none"/>
  </g>
  
  <!-- Snail -->
  <g transform="translate(60,150) scale(0.5)">
    <path d="M 0,0 C -10,0 -20,10 -20,20 C -20,30 -10,40 0,40 L 40,40 C 50,40 60,30 60,20 C 60,10 50,0 40,0 Z" fill="#90ee90"/>
    <circle cx="0" cy="20" r="30" fill="url(#snailShell)"/>
    <path d="M -15,20 C -15,10 -5,0 5,0" fill="none" stroke="#8b4513" stroke-width="3"/>
    <circle cx="-25" cy="0" r="5" fill="#90ee90"/>
    <circle cx="-23" cy="-2" r="2" fill="#000"/>
  </g>
  
  <!-- Speed Lines -->
  <g stroke="#fff" stroke-width="2" opacity="0.6">
    <line x1="240" y1="140" x2="260" y2="140"/>
    <line x1="235" y1="150" x2="255" y2="150"/>
    <line x1="240" y1="160" x2="260" y2="160"/>
  </g>
  
  <!-- Finish Line -->
  <g transform="translate(270,150)">
    <rect x="-5" y="-20" width="10" height="40" fill="#000"/>
    <rect x="-5" y="-20" width="10" height="5" fill="#fff"/>
    <rect x="-5" y="-10" width="10" height="5" fill="#fff"/>
    <rect x="-5" y="0" width="10" height="5" fill="#fff"/>
    <rect x="-5" y="10" width="10" height="5" fill="#fff"/>
  </g>
</svg>
SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgRadial" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#e0f7fa"/>
      <stop offset="100%" stop-color="#80deea"/>
    </radialGradient>
    <linearGradient id="rainbow" gradientUnits="userSpaceOnUse" x1="0" y1="300" x2="300" y2="0">
      <stop offset="0%" stop-color="#e53935"/>
      <stop offset="15%" stop-color="#fb8c00"/>
      <stop offset="30%" stop-color="#fdd835"/>
      <stop offset="45%" stop-color="#43a047"/>
      <stop offset="60%" stop-color="#1e88e5"/>
      <stop offset="75%" stop-color="#5e35b1"/>
      <stop offset="100%" stop-color="#8e24aa"/>
    </linearGradient>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ffeb3b"/>
      <stop offset="100%" stop-color="#f57f17"/>
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#000" flood-opacity="0.3"/>
    </filter>
    <radialGradient id="sunGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff9c4"/>
      <stop offset="100%" stop-color="#fff176" stop-opacity="0"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgRadial)"/>
  <path d="M0,280 C60,260 120,280 180,260 240,280 300,260 L300,300 L0,300 Z" fill="#c5e1a5"/>
  <circle cx="250" cy="50" r="30" fill="url(#sunGrad)"/>
  <ellipse cx="60" cy="60" rx="20" ry="8" fill="#fff" fill-opacity="0.8"/>
  <ellipse cx="85" cy="55" rx="25" ry="10" fill="#fff" fill-opacity="0.8"/>
  <ellipse cx="110" cy="65" rx="20" ry="8" fill="#fff" fill-opacity="0.8"/>
  <path d="M20,260 C80,200 120,150 180,100 S260,40 280,20" fill="none" stroke="url(#rainbow)" stroke-width="20" stroke-linecap="round" stroke-linejoin="round"/>
  <g transform="translate(20,260) rotate(45)" filter="url(#shadow)">
    <path d="M0,0 C5,-5 20,-10 25,-25 C30,-40 10,-40 0,-30 Z" fill="#a5d6a7" stroke="#4a7" stroke-width="1"/>
    <circle cx="10" cy="-35" r="12" fill="url(#shellGradient)" stroke="#4a7" stroke-width="1"/>
    <path d="M22,-35 A12,12 0 0,0 10,-23 A8,8 0 0,0 14,-27 A4,4 0 0,1 16,-29" stroke="#f57f17" stroke-width="2" fill="none"/>
    <line x1="25" y1="-25" x2="30" y2="-40" stroke="#4a7" stroke-width="1"/>
    <circle cx="30" cy="-40" r="1.5" fill="#000"/>
    <line x1="23" y1="-27" x2="18" y2="-42" stroke="#4a7" stroke-width="1"/>
    <circle cx="18" cy="-42" r="1.5" fill="#000"/>
  </g>
  <g transform="translate(280,20) rotate(45) scale(0.7)" filter="url(#shadow)">
    <ellipse cx="5" cy="5" rx="30" ry="12" fill="#ffd54f"/>
    <circle cx="42" cy="0" r="8" fill="#ffd54f"/>
    <path d="M38,-4 L34,-12 L42,-8 Z" fill="#ffd54f"/>
    <path d="M46,-4 L52,-10 L48,-2 Z" fill="#ffd54f"/>
    <path d="M-20,10 C -25,20 -10,20 -15,30" stroke="#ffd54f" stroke-width="5" stroke-linecap="round"/>
    <path d="M20,15 C 18,25 28,25 25,35" stroke="#ffd54f" stroke-width="5" stroke-linecap="round"/>
    <circle cx="0" cy="-2" r="2" fill="#6d4c41"/>
    <circle cx="-10" cy="5" r="2.5" fill="#6d4c41"/>
    <circle cx="10" cy="8" r="1.5" fill="#6d4c41"/>
    <circle cx="15" cy="2" r="2" fill="#6d4c41"/>
    <circle cx="5" cy="15" r="1.8" fill="#6d4c41"/>
    <path d="M-50,0 C-60,-5 -70,5 -60,10" stroke="#ffc107" stroke-width="4" fill="none" opacity="0.7"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission demonstrates greater creativity and visual appeal with a dynamic composition, subtle lighting, and a whimsical sky background.

    The winding rainbow track is more pronounced and colorful, and the details on the snail and cheetah add charm.

    While Player 1's image is clear and adheres to the prompt, it lacks the same level of technical refinement and visual depth as Player 2's work.

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
21
Player 2
26
Rectangles

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

Player 1
6
Player 2
1
Circles

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

Player 1
4
Player 2
10
Ellipses

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

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

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

Player 1
7
Player 2
9
Groups

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
21

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
3
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
24
Player 2
30
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
2
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