Back

SVG Drawing Match #2771

May 24, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a rocket strapped to its shell, zooming past surprised onlooking worms."

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="rocketFlame" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="yellow" />
      <stop offset="50%" stop-color="orange" />
      <stop offset="100%" stop-color="red" />
    </radialGradient>
    <pattern id="wormPattern" width="20" height="5" patternUnits="userSpaceOnUse">
      <ellipse cx="10" cy="2.5" rx="8" ry="2" fill="pink" />
    </pattern>
  </defs>

  <g transform="translate(50 150)">
    <path d="M 0 0 C 20 -20, 40 -10, 60 0" stroke="brown" stroke-width="5" fill="none" />
    <ellipse cx="30" cy="-15" rx="15" ry="5" fill="lightgreen" />
    <ellipse cx="45" cy="-15" rx="15" ry="5" fill="lightgreen" />
    <circle cx="30" cy="-25" r="3" fill="black" />
    <circle cx="45" cy="-25" r="3" fill="black" />
    <path d="M 30 -22 C 35 -30, 40 -30, 45 -22" stroke="black" stroke-width="1" fill="none" />
  </g>
  <g transform="translate(150 180)">
    <path d="M 0 0 C 20 -20, 40 -10, 60 0" stroke="brown" stroke-width="5" fill="none" />
    <ellipse cx="30" cy="-15" rx="15" ry="5" fill="lightgreen" />
    <circle cx="30" cy="-25" r="3" fill="black" />
     <path d="M 30 -28 C 33 -35, 37 -35, 40 -28" stroke="black" stroke-width="1" fill="none" />
  </g>


  <path d="M 50 100 C 60 90, 80 80, 100 80" stroke="peru" stroke-width="10" fill="none"/>
  <ellipse cx="100" cy="80" rx="30" ry="20" fill="url(#wormPattern)" />
  <path d="M 70 70 L 60 60" stroke="black" stroke-width="3" />
  <path d="M 130 70 L 140 60" stroke="black" stroke-width="3" />

  <path d="M 150 50 L 250 20" stroke="#663300" stroke-width="5" stroke-linecap="round" />
  <ellipse cx="250" cy="20" rx="40" ry="30" fill="lightgoldenrodyellow" stroke="#663300" stroke-width="3"/>

  <polygon points="210 10 290 20 210 30" fill="url(#rocketFlame)" />
  <ellipse cx="250" cy="50" rx="10" ry="5" fill="black" />
  <ellipse cx="250" cy="60" rx="5" ry="3" fill="black" />


</svg>
SVG by Claude Sonnet 4 (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="30%" r="70%">
      <stop offset="0%" style="stop-color:#87CEEB"/>
      <stop offset="100%" style="stop-color:#4169E1"/>
    </radialGradient>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#DEB887"/>
      <stop offset="50%" style="stop-color:#CD853F"/>
      <stop offset="100%" style="stop-color:#8B4513"/>
    </linearGradient>
    <linearGradient id="rocketGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#FF4500"/>
      <stop offset="50%" style="stop-color:#FF6347"/>
      <stop offset="100%" style="stop-color:#DC143C"/>
    </linearGradient>
    <radialGradient id="flameGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFD700"/>
      <stop offset="40%" style="stop-color:#FF4500"/>
      <stop offset="100%" style="stop-color:#8B0000"/>
    </radialGradient>
    <linearGradient id="wormGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#228B22"/>
      <stop offset="100%" style="stop-color:#006400"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Sky background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Speed lines -->
  <g opacity="0.7">
    <line x1="0" y1="120" x2="80" y2="118" stroke="#FFF" stroke-width="2" opacity="0.8"/>
    <line x1="10" y1="140" x2="90" y2="138" stroke="#FFF" stroke-width="1.5" opacity="0.6"/>
    <line x1="5" y1="160" x2="85" y2="158" stroke="#FFF" stroke-width="1" opacity="0.4"/>
    <line x1="15" y1="180" x2="95" y2="178" stroke="#FFF" stroke-width="1.5" opacity="0.5"/>
  </g>
  
  <!-- Rocket flames -->
  <ellipse cx="95" cy="150" rx="25" ry="8" fill="url(#flameGradient)" filter="url(#glow)">
    <animateTransform attributeName="transform" type="scale" values="1,1;1.2,0.8;1,1" dur="0.3s" repeatCount="indefinite"/>
  </ellipse>
  <ellipse cx="85" cy="150" rx="15" ry="5" fill="#FFD700" opacity="0.8">
    <animateTransform attributeName="transform" type="scale" values="1,1;0.8,1.2;1,1" dur="0.2s" repeatCount="indefinite"/>
  </ellipse>
  
  <!-- Snail shell -->
  <circle cx="150" cy="150" r="35" fill="url(#shellGradient)" stroke="#654321" stroke-width="2"/>
  <path d="M 150 115 Q 170 130 165 150 Q 160 170 150 175 Q 140 170 135 150 Q 130 130 150 115" fill="#8B4513" opacity="0.7"/>
  <circle cx="145" cy="140" r="8" fill="#654321"/>
  <circle cx="155" cy="160" r="6" fill="#654321"/>
  
  <!-- Rocket strapped to shell -->
  <rect x="120" y="140" width="40" height="20" rx="10" fill="url(#rocketGradient)" stroke="#8B0000" stroke-width="1"/>
  <circle cx="160" cy="150" r="8" fill="#FFD700" stroke="#FF4500" stroke-width="1"/>
  <rect x="125" y="145" width="8" height="10" fill="#FFF" opacity="0.8"/>
  <rect x="135" y="145" width="8" height="10" fill="#FFF" opacity="0.8"/>
  
  <!-- Rocket straps -->
  <path d="M 125 135 Q 150 120 175 135" stroke="#8B4513" stroke-width="3" fill="none"/>
  <path d="M 125 165 Q 150 180 175 165" stroke="#8B4513" stroke-width="3" fill="none"/>
  
  <!-- Snail body -->
  <ellipse cx="180" cy="170" rx="25" ry="15" fill="#DDA0DD" stroke="#9370DB" stroke-width="1"/>
  <ellipse cx="195" cy="165" rx="12" ry="8" fill="#DDA0DD"/>
  
  <!-- Snail tentacles with eyes -->
  <line x1="200" y1="160" x2="210" y2="145" stroke="#9370DB" stroke-width="3" stroke-linecap="round"/>
  <line x1="205" y1="162" x2="215" y2="150" stroke="#9370DB" stroke-width="3" stroke-linecap="round"/>
  <circle cx="210" cy="145" r="3" fill="#000"/>
  <circle cx="215" cy="150" r="3" fill="#000"/>
  <circle cx="211" cy="144" r="1" fill="#FFF"/>
  <circle cx="216" cy="149" r="1" fill="#FFF"/>
  
  <!-- Surprised worms -->
  <!-- Worm 1 -->
  <g transform="translate(50,200)">
    <path d="M 0 20 Q 10 10 20 20 Q 30 30 40 20 Q 50 10 60 20" stroke="url(#wormGradient)" stroke-width="8" fill="none" stroke-linecap="round"/>
    <circle cx="55" cy="18" r="4" fill="#000"/>
    <circle cx="56" cy="17" r="1" fill="#FFF"/>
    <ellipse cx="50" cy="25" rx="8" ry="4" fill="#FF69B4" opacity="0.8"/>
  </g>
  
  <!-- Worm 2 -->
  <g transform="translate(80,240)">
    <path d="M 0 15 Q 15 5 30 15 Q 45 25 60 15" stroke="url(#wormGradient)" stroke-width="6" fill="none" stroke-linecap="round"/>
    <circle cx="55" cy="13" r="3" fill="#000"/>
    <circle cx="56" cy="12" r="1" fill="#FFF"/>
    <path d="M 45 20 Q 50 15 55 20" stroke="#FF69B4" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Worm 3 -->
  <g transform="translate(200,220)">
    <path d="M 0 10 Q 12 0 24 10 Q 36 20 48 10" stroke="url(#wormGradient)" stroke-width="7" fill="none" stroke-linecap="round"/>
    <circle cx="43" cy="8" r="3.5" fill="#000"/>
    <circle cx="44" cy="7" r="1" fill="#FFF"/>
    <ellipse cx="38" cy="15" rx="6" ry="3" fill="#FF69B4" opacity="0.8"/>
  </g>
  
  <!-- Dust clouds -->
  <g opacity="0.6">
    <ellipse cx="220" cy="190" rx="15" ry="8" fill="#D2B48C">
      <animateTransform attributeName="transform" type="translate" values="0,0;10,0;0,0" dur="1s" repeatCount="indefinite"/>
    </ellipse>
    <ellipse cx="230" cy="185" rx="10" ry="5" fill="#DDD">
      <animateTransform attributeName="transform" type="translate" values="0,0;8,0;0,0" dur="0.8s" repeatCount="indefinite"/>
    </ellipse>
  </g>
  
  <!-- Motion blur effect -->
  <ellipse cx="170" cy="160" rx="40" ry="25" fill="#DDA0DD" opacity="0.3"/>
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Sonnet 4 (2025-05-14) Player 2

Judge's Analysis

    Player 2's submission demonstrates greater adherence to the prompt with a clear depiction of a snail with a rocket strapped to its shell zooming past surprised worms.

    The image is more visually appealing and exhibits better technical quality with smoother details and a cohesive composition, making it more engaging and creative than Player 1's submission, which is less clear and lacks refinement.

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
20
Player 2
40
Rectangles

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

Player 1
Player 2
4
Circles

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

Player 1
3
Player 2
14
Ellipses

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

Player 1
8
Player 2
9
Lines

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

Player 1
Player 2
6
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
8
Player 2
7
Groups

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

Player 1
2
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
16

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
12

Interactivity Metrics

Animations

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

Player 1
Player 2
4
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
3

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
21
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
6
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.