Back

SVG Drawing Match #2805

May 26, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing against a rocket on a tiny track."

SVG by Claude Opus 4 (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFE4B5;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="rocketGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#FFD93D;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="snailShell">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#D2691E;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#F4A460;stop-opacity:1" />
    </radialGradient>
    <pattern id="trackPattern" x="0" y="0" width="20" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#333"/>
      <rect x="10" y="0" width="10" height="10" fill="#FFF"/>
    </pattern>
    <filter id="flame">
      <feTurbulence type="fractalNoise" baseFrequency="0.02" numOctaves="4" result="turbulence"/>
      <feColorMatrix in="turbulence" type="saturate" values="0"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  
  <!-- Clouds -->
  <ellipse cx="50" cy="40" rx="25" ry="15" fill="white" opacity="0.7"/>
  <ellipse cx="65" cy="45" rx="20" ry="12" fill="white" opacity="0.7"/>
  <ellipse cx="250" cy="60" rx="30" ry="18" fill="white" opacity="0.7"/>
  <ellipse cx="270" cy="65" rx="25" ry="15" fill="white" opacity="0.7"/>
  
  <!-- Track -->
  <path d="M 20 200 Q 150 180 280 200 L 280 220 Q 150 200 20 220 Z" fill="url(#trackPattern)" stroke="#222" stroke-width="2"/>
  
  <!-- Start/Finish Line -->
  <rect x="15" y="190" width="5" height="40" fill="#FF0000"/>
  <rect x="280" y="190" width="5" height="40" fill="#00FF00"/>
  
  <!-- Snail -->
  <g transform="translate(60, 185)">
    <!-- Body -->
    <ellipse cx="0" cy="10" rx="20" ry="8" fill="#90EE90"/>
    <!-- Shell -->
    <circle cx="5" cy="5" r="12" fill="url(#snailShell)"/>
    <!-- Shell spiral -->
    <path d="M 5 5 Q 10 5 10 10 Q 5 10 5 5 Q 0 5 0 0 Q 5 0 5 5" fill="none" stroke="#654321" stroke-width="1.5" opacity="0.7"/>
    <!-- Eye stalks -->
    <line x1="-15" y1="8" x2="-18" y2="2" stroke="#90EE90" stroke-width="2" stroke-linecap="round"/>
    <line x1="-10" y1="8" x2="-13" y2="2" stroke="#90EE90" stroke-width="2" stroke-linecap="round"/>
    <circle cx="-18" cy="2" r="2" fill="#333"/>
    <circle cx="-13" cy="2" r="2" fill="#333"/>
    <!-- Smile -->
    <path d="M -15 12 Q -12 14 -9 12" fill="none" stroke="#333" stroke-width="1" stroke-linecap="round"/>
    <!-- Slime trail -->
    <path d="M 20 15 L 40 15" stroke="#90EE90" stroke-width="3" opacity="0.5" stroke-linecap="round"/>
  </g>
  
  <!-- Rocket -->
  <g transform="translate(220, 170)">
    <!-- Main body -->
    <rect x="-15" y="0" width="30" height="40" rx="15" fill="url(#rocketGrad)"/>
    <!-- Nose cone -->
    <path d="M -15 0 Q 0 -15 15 0" fill="#FF6B6B"/>
    <!-- Fins -->
    <path d="M -15 30 L -25 40 L -15 40 Z" fill="#4169E1"/>
    <path d="M 15 30 L 25 40 L 15 40 Z" fill="#4169E1"/>
    <!-- Window -->
    <circle cx="0" cy="10" r="6" fill="#87CEEB" stroke="#333" stroke-width="1"/>
    <!-- Flames -->
    <ellipse cx="0" cy="45" rx="12" ry="20" fill="#FF4500" opacity="0.8">
      <animate attributeName="ry" values="20;25;20" dur="0.3s" repeatCount="indefinite"/>
    </ellipse>
    <ellipse cx="0" cy="45" rx="8" ry="15" fill="#FFD700" opacity="0.9">
      <animate attributeName="ry" values="15;18;15" dur="0.2s" repeatCount="indefinite"/>
    </ellipse>
    <!-- Speed lines -->
    <line x1="20" y1="5" x2="35" y2="5" stroke="#FFD700" stroke-width="2" opacity="0.7"/>
    <line x1="20" y1="15" x2="40" y2="15" stroke="#FFD700" stroke-width="2" opacity="0.7"/>
    <line x1="20" y1="25" x2="35" y2="25" stroke="#FFD700" stroke-width="2" opacity="0.7"/>
  </g>
  
  <!-- Cheering crowd -->
  <g transform="translate(150, 240)">
    <circle cx="-30" cy="0" r="5" fill="#FFB6C1"/>
    <circle cx="-20" cy="2" r="5" fill="#87CEEB"/>
    <circle cx="-10" cy="0" r="5" fill="#98FB98"/>
    <circle cx="0" cy="2" r="5" fill="#DDA0DD"/>
    <circle cx="10" cy="0" r="5" fill="#F0E68C"/>
    <circle cx="20" cy="2" r="5" fill="#FFA07A"/>
    <circle cx="30" cy="0" r="5" fill="#20B2AA"/>
  </g>
  
  <!-- Title -->
  <text x="150" y="280" text-anchor="middle" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="#333">The Great Race!</text>
</svg>
SVG by Gemini 2.5 Flash Preview High 04-17
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#4682B4"/>
    </linearGradient>
    <linearGradient id="grassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#90EE90"/>
      <stop offset="100%" stop-color="#32CD32"/>
    </linearGradient>
    <radialGradient id="rocketGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FF4500"/>
      <stop offset="50%" stop-color="#FF8C00"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </radialGradient>
    <linearGradient id="snailGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#A0522D"/>
      <stop offset="100%" stop-color="#D2B48C"/>
    </linearGradient>
    <pattern id="trackPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="20" fill="#D3D3D3"/>
      <rect x="10" y="0" width="10" height="20" fill="#A9A9A9"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <rect y="200" width="300" height="100" fill="url(#grassGradient)"/>

  <path d="M 50 220 Q 150 180 250 220" fill="none" stroke="url(#trackPattern)" stroke-width="15"/>

  <!-- Rocket -->
  <g transform="translate(230, 190) rotate(-20)">
    <circle cx="0" cy="0" r="10" fill="url(#rocketGradient)"/>
    <path d="M -5 0 L 0 -30 L 5 0 Z" fill="#DC143C"/>
    <path d="M 0 -30 Q -10 -40 -5 -50 Q 0 -60 5 -50 Q 10 -40 0 -30 Z" fill="#FFFAF0"/>
    <rect x="-7" y="5" width="4" height="15" fill="#FF4500"/>
    <rect x="3" y="5" width="4" height="15" fill="#FF4500"/>
  </g>

  <!-- Snail -->
  <g transform="translate(70, 215) rotate(5)">
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="#6B8E23"/>
    <path d="M -15 0 C -25 5 -25 15 -15 20 L 5 20 C 15 15 15 5 5 0 Z" fill="#6B8E23"/>
    <path d="M -15 0 Q -20 -5 -15 -10 Q -10 -15 0 -10 Q 10 -15 15 -10 Q 20 -5 15 0 Z" fill="url(#snailGradient)"/>
    <circle cx="-12" cy="-8" r="2" fill="#000"/>
    <circle cx="-8" cy="-8" r="2" fill="#000"/>
  </g>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Opus 4 (2025-05-14) Player 1

Judge's Analysis

    Player 1's submission is more visually appealing and creative, with a playful composition, vibrant colors, and the inclusion of details like the starting line and the 'Great Race' text.

    It adheres closely to the prompt while showcasing better technical quality and compositional balance.

    Player 2's submission is simpler and less detailed, making it less engaging overall.

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
36
Player 2
15
Rectangles

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

Player 1
6
Player 2
6
Circles

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

Player 1
11
Player 2
3
Ellipses

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

Player 1
7
Player 2
1
Lines

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

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

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

Player 1
3
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
15

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
2
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
22
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
5
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
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.