Back

SVG Drawing Match #228

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail in a space helmet orbiting a giant sunflower"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGrad" cx="50%" cy="50%" r="70%">
      <stop offset="30%" stop-color="#0b0b3b"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <linearGradient id="helmetGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00ffff"/>
      <stop offset="100%" stop-color="#0000ff"/>
    </linearGradient>
    <pattern id="spiral" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M10 0Q15 10 10 20M10 0Q5 10 10 20" stroke="#ffd700" fill="none"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#spaceGrad)"/>
  
  <!-- Sunflower -->
  <g transform="translate(150 150)">
    <circle r="50" fill="#8B4513"/>
    <g transform="rotate(-30)">
      <path d="M-40 0Q0 20 40 0L0-80Z" fill="#ffd700" transform="rotate(0)"/>
      <path d="M-40 0Q0 20 40 0L0-80Z" fill="#ff8c00" transform="rotate(30)"/>
      <path d="M-40 0Q0 20 40 0L0-80Z" fill="#ffd700" transform="rotate(60)"/>
      <path d="M-40 0Q0 20 40 0L0-80Z" fill="#ff8c00" transform="rotate(90)"/>
    </g>
    <circle r="30" fill="url(#spiral)" transform="rotate(15)"/>
  </g>

  <!-- Orbital Path -->
  <circle cx="150" cy="150" r="120" fill="none" stroke="#ffffff44" stroke-dasharray="4 8"/>

  <!-- Space Snail -->
  <g transform="translate(210 180)">
    <circle r="25" fill="url(#helmetGrad)" stroke="#fff" stroke-width="2"/>
    <path d="M-15 15Q-5 25 15 15L0-10Z" fill="#ff66b3"/>
    <circle r="18" fill="#fff1" stroke="#fff" stroke-width="2"/>
    <path d="M-25 0C-25 25 25 25 25 0" fill="#fff3" stroke="#fff2"/>
    <path d="M-20 25Q0 35 20 25" fill="none" stroke="#fff" stroke-width="1.5"/>
    
    <!-- Shell -->
    <g transform="translate(-5 -15)">
      <path d="M0 0Q15 -5 30 0Q15 15 0 0" fill="#7a4bff"/>
      <path d="M0 0Q15 5 30 0" fill="none" stroke="#fff" stroke-width="1"/>
    </g>
  </g>

  <!-- Star Field -->
  <g fill="#fff">
    <circle cx="45" cy="80" r="1.2" opacity="0.8"/>
    <circle cx="250" cy="40" r="0.8" opacity="0.6"/>
    <circle cx="180" cy="220" r="1.5" opacity="0.9"/>
    <circle cx="90" cy="150" r="1" opacity="0.7"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
  
  <!-- Sunflower -->
  <circle cx="150" cy="150" r="100" fill="yellow"/>
  <circle cx="150" cy="150" r="80" fill="orange"/>
  
  <!-- Snail Body -->
  <circle cx="150" cy="160" r="20" fill="#98FB98"/>
  <circle cx="150" cy="145" r="15" fill="#228B22"/>
  
  <!-- Snail Shell -->
  <path d="M140,175 C140,155 160,155 160,175 C160,195 140,195 140,175" fill="#800080"/>
  <path d="M140,175 Q142,150 160,175 Q142,200 140,175" fill="#9932CC"/>
  
  <!-- Snail Eyes -->
  <circle cx="145" cy="145" r="2" fill="black"/>
  <circle cx="155" cy="145" r="2" fill="black"/>
  
  <!-- Space Helmet -->
  <circle cx="165" cy="145" r="22" fill="none" stroke="#FFD700" stroke-width="3"/>
  <line x1="145" y1="135" x2="165" y2="145" stroke="#FFD700" stroke-width="3"/>
  <line x1="185" y1="135" x2="165" y2="145" stroke="#FFD700" stroke-width="3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's submission effectively combines the elements of the prompt with a stylized snail in a space helmet clearly orbiting a sunflower, which is creatively abstracted with geometric shapes.

    The composition is visually appealing with a strong contrast against the dark background, and the technical execution is clean.

    Player 2's submission, while colorful, lacks clarity in depicting the snail and sunflower concept, making it less adherent to the prompt.

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
12
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
9
Player 2
7
Ellipses

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

Player 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
10
Player 2
2
Groups

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
9

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
9
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
33
Player 2
6
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
3
Player 2
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