Back

SVG Drawing Match #2774

May 24, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing against a rocket on a rainbow track to the moon."

SVG by Claude Sonnet 4 (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="20%" r="80%">
      <stop offset="0%" style="stop-color:#1a1a2e"/>
      <stop offset="100%" style="stop-color:#16213e"/>
    </radialGradient>
    <linearGradient id="rainbowTrack" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff0080"/>
      <stop offset="16.66%" style="stop-color:#ff8000"/>
      <stop offset="33.33%" style="stop-color:#ffff00"/>
      <stop offset="50%" style="stop-color:#80ff00"/>
      <stop offset="66.66%" style="stop-color:#00ffff"/>
      <stop offset="83.33%" style="stop-color:#8000ff"/>
      <stop offset="100%" style="stop-color:#ff0080"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="30%" cy="30%" r="70%">
      <stop offset="0%" style="stop-color:#f5f5dc"/>
      <stop offset="100%" style="stop-color:#d3d3d3"/>
    </radialGradient>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8b4513"/>
      <stop offset="50%" style="stop-color:#daa520"/>
      <stop offset="100%" style="stop-color:#8b4513"/>
    </linearGradient>
    <linearGradient id="rocketGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ff4500"/>
      <stop offset="50%" style="stop-color:#dc143c"/>
      <stop offset="100%" style="stop-color:#8b0000"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge> 
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Space background -->
  <rect width="300" height="300" fill="url(#spaceGradient)"/>
  
  <!-- Stars -->
  <circle cx="50" cy="40" r="1" fill="white" opacity="0.8"/>
  <circle cx="120" cy="30" r="0.5" fill="white" opacity="0.6"/>
  <circle cx="200" cy="50" r="1.5" fill="white" opacity="0.9"/>
  <circle cx="270" cy="35" r="0.8" fill="white" opacity="0.7"/>
  <circle cx="80" cy="80" r="0.6" fill="white" opacity="0.5"/>
  <circle cx="180" cy="25" r="1" fill="white" opacity="0.8"/>
  
  <!-- Moon -->
  <circle cx="250" cy="70" r="25" fill="url(#moonGradient)" filter="url(#glow)"/>
  <circle cx="245" cy="65" r="3" fill="#c0c0c0" opacity="0.7"/>
  <circle cx="255" cy="75" r="2" fill="#c0c0c0" opacity="0.6"/>
  <circle cx="248" cy="78" r="1.5" fill="#c0c0c0" opacity="0.5"/>
  
  <!-- Rainbow track -->
  <path d="M 20 180 Q 80 120 140 160 Q 200 100 260 140" stroke="url(#rainbowTrack)" stroke-width="15" fill="none" opacity="0.8"/>
  <path d="M 20 185 Q 80 125 140 165 Q 200 105 260 145" stroke="url(#rainbowTrack)" stroke-width="8" fill="none" opacity="0.6"/>
  
  <!-- Snail -->
  <g transform="translate(45, 160)">
    <!-- Snail body -->
    <ellipse cx="15" cy="8" rx="18" ry="6" fill="#90ee90" opacity="0.9"/>
    <!-- Snail shell -->
    <circle cx="8" cy="0" r="12" fill="url(#shellGradient)"/>
    <path d="M 8 0 m -8 0 A 8 8 0 0 1 8 -8 A 4 4 0 0 1 8 0 A 2 2 0 0 1 8 -2" stroke="#654321" stroke-width="1" fill="none"/>
    <!-- Snail head -->
    <ellipse cx="25" cy="8" rx="6" ry="4" fill="#90ee90"/>
    <!-- Antennae -->
    <line x1="28" y1="5" x2="30" y2="2" stroke="#228b22" stroke-width="1"/>
    <line x1="28" y1="6" x2="30" y2="3" stroke="#228b22" stroke-width="1"/>
    <circle cx="30" cy="2" r="1" fill="#ff69b4"/>
    <circle cx="30" cy="3" r="1" fill="#ff69b4"/>
    <!-- Trail -->
    <path d="M 0 12 Q -10 10 -20 12 Q -30 14 -40 12" stroke="#87ceeb" stroke-width="2" fill="none" opacity="0.6"/>
  </g>
  
  <!-- Rocket -->
  <g transform="translate(180, 135)">
    <!-- Rocket body -->
    <ellipse cx="0" cy="5" rx="8" ry="20" fill="url(#rocketGradient)"/>
    <!-- Rocket nose -->
    <path d="M 0 -15 L -5 -5 L 5 -5 Z" fill="#ffd700"/>
    <!-- Rocket fins -->
    <path d="M -8 15 L -12 25 L -5 20 Z" fill="#4169e1"/>
    <path d="M 8 15 L 12 25 L 5 20 Z" fill="#4169e1"/>
    <!-- Rocket window -->
    <circle cx="0" cy="-2" r="3" fill="#87ceeb" opacity="0.8"/>
    <!-- Flame -->
    <ellipse cx="0" cy="28" rx="6" ry="8" fill="#ff4500" opacity="0.9"/>
    <ellipse cx="0" cy="30" rx="4" ry="6" fill="#ffd700" opacity="0.8"/>
    <ellipse cx="0" cy="32" rx="2" ry="4" fill="#ffffff" opacity="0.7"/>
    <!-- Exhaust trail -->
    <path d="M 0 35 Q -5 45 0 55 Q 5 65 0 75" stroke="#ff6347" stroke-width="3" fill="none" opacity="0.6"/>
    <path d="M 0 35 Q 3 45 0 55 Q -3 65 0 75" stroke="#ffd700" stroke-width="2" fill="none" opacity="0.5"/>
  </g>
  
  <!-- Speed lines for snail -->
  <g opacity="0.4">
    <line x1="15" y1="175" x2="5" y2="175" stroke="#90ee90" stroke-width="1"/>
    <line x1="18" y1="178" x2="8" y2="178" stroke="#90ee90" stroke-width="1"/>
    <line x1="20" y1="172" x2="10" y2="172" stroke="#90ee90" stroke-width="1"/>
  </g>
  
  <!-- Speed lines for rocket -->
  <g opacity="0.6">
    <line x1="165" y1="140" x2="150" y2="140" stroke="#ff6347" stroke-width="2"/>
    <line x1="168" y1="145" x2="153" y2="145" stroke="#ff6347" stroke-width="2"/>
    <line x1="170" y1="135" x2="155" y2="135" stroke="#ff6347" stroke-width="2"/>
  </g>
  
  <!-- Finish line near moon -->
  <g transform="translate(235, 85)">
    <rect x="0" y="0" width="2" height="30" fill="white"/>
    <rect x="2" y="0" width="2" height="30" fill="black"/>
    <rect x="4" y="0" width="2" height="30" fill="white"/>
    <rect x="6" y="0" width="2" height="30" fill="black"/>
  </g>
  
  <!-- Motivational sparkles -->
  <g opacity="0.8">
    <path d="M 100 90 L 102 95 L 107 93 L 102 98 L 100 103 L 98 98 L 93 93 L 98 95 Z" fill="#ffd700"/>
    <path d="M 130 110 L 131 113 L 134 112 L 131 115 L 130 118 L 129 115 L 126 112 L 129 113 Z" fill="#ff69b4"/>
    <path d="M 210 90 L 212 95 L 217 93 L 212 98 L 210 103 L 208 98 L 203 93 L 208 95 Z" fill="#00ffff"/>
  </g>
</svg>
SVG by Gemini 2.5 Flash Preview High 04-17
<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="14%" stop-color="#ff7f00"/>
      <stop offset="28%" stop-color="#ffff00"/>
      <stop offset="42%" stop-color="#00ff00"/>
      <stop offset="56%" stop-color="#0000ff"/>
      <stop offset="70%" stop-color="#4b0082"/>
      <stop offset="84%" stop-color="#9400d3"/>
      <stop offset="100%" stop-color="#ff0000"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffffcc"/>
      <stop offset="100%" stop-color="#cccc99"/>
    </radialGradient>
    <pattern id="snailPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#654321"/>
    </pattern>
  </defs>

  <!-- Background: Starry Night -->
  <rect width="300" height="300" fill="#0a0a2a"/>
  <circle cx="280" cy="20" r="2" fill="#ffffff"/>
  <circle cx="260" cy="40" r="1.5" fill="#ffffff"/>
  <circle cx="290" cy="50" r="1" fill="#ffffff"/>
  <circle cx="250" cy="10" r="2.5" fill="#ffffff"/>
  <circle cx="270" cy="60" r="1.8" fill="#ffffff"/>

  <!-- Rainbow Track -->
  <path d="M 0 250 Q 150 100 300 250" stroke="url(#rainbowGradient)" stroke-width="20" fill="none"/>

  <!-- Moon -->
  <circle cx="280" cy="100" r="40" fill="url(#moonGradient)"/>
  <circle cx="270" cy="90" r="5" fill="#a0a070"/>
  <circle cx="295" cy="110" r="8" fill="#b0b080"/>

  <!-- Snail -->
  <g transform="translate(30, 240) scale(0.5)">
    <path d="M 50 20 Q 70 0 100 20 Q 120 40 100 60 Q 70 80 50 60 Q 30 40 50 20 Z" fill="#996633" stroke="#654321" stroke-width="3"/>
    <ellipse cx="75" cy="40" rx="20" ry="15" fill="url(#snailPattern)" stroke="#654321" stroke-width="3"/>
    <circle cx="40" cy="65" r="15" fill="#cc9966"/>
    <line x1="45" y1="55" x2="35" y2="50" stroke="#654321" stroke-width="2"/>
    <line x1="45" y1="75" x2="35" y2="80" stroke="#654321" stroke-width="2"/>
    <circle cx="35" cy="65" r="3" fill="#000000"/>
    <circle cx="50" cy="50" r="3" fill="#000000"/>
  </g>

  <!-- Rocket -->
  <g transform="translate(20, 200) scale(0.8)">
    <path d="M 50 0 L 70 100 L 30 100 L 50 0 Z" fill="#ff0000" stroke="#cc0000" stroke-width="3"/>
    <rect x="40" y="90" width="20" height="30" fill="#cccccc" stroke="#999999" stroke-width="2"/>
    <circle cx="50" cy="120" r="15" fill="#ff8800"/>
    <path d="M 40 120 Q 30 150 20 120" fill="#ffcc00"/>
    <path d="M 60 120 Q 70 150 80 120" fill="#ffcc00"/>
    <circle cx="50" cy="50" r="10" fill="#ccccff"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Sonnet 4 (2025-05-14) Player 1

Judge's Analysis

    Player 1's submission demonstrates stronger creativity and better adherence to the prompt, with the snail and rocket actively positioned on a dynamic, winding rainbow track.

    The inclusion of additional elements like stars and motion effects adds visual appeal and technical quality.

    Player 2's image, while clear, is simpler and less engaging, with a static and less imaginative 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
45
Player 2
24
Rectangles

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

Player 1
5
Player 2
2
Circles

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

Player 1
14
Player 2
14
Ellipses

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

Player 1
6
Player 2
1
Lines

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

Player 1
8
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
12
Player 2
5
Groups

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

Player 1
6
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
5
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
23

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
59
Player 2
17
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
3
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.