Back

SVG Drawing Match #735

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a skyscraper shell gliding through a glowing, starry night sky"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bodyGradient">
      <stop offset="0%" stop-color="#FF99FF"/>
      <stop offset="100%" stop-color="#FFFFFF"/>
    </radialGradient>
    <linearGradient id="skyGradient">
      <stop offset="0%" stop-color="#1A0F3C"/>
      <stop offset="100%" stop-color="#2B1B4F"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <g transform="translate(150,150)">
    <!-- Snail Body -->
    <circle r="40" fill="url(#bodyGradient)" filter="url(#glow)"/>
    
    <!-- Shell (Skyscraper) -->
    <g transform="translate(0,30)">
      <rect x="-20" y="-80" width="40" height="20" fill="#666"/>
      <rect x="-15" y="-60" width="30" height="25" fill="#555"/>
      <rect x="-10" y="-40" width="25" height="30" fill="#444"/>
      <rect x="-5" y="-20" width="20" height="35" fill="#333"/>
      <rect x="-2" y="0" width="15" height="40" fill="#222"/>
      <rect x="-2" y="40" width="10" height="45" fill="#111"/>
      <rect x="-1" y="80" width="5" height="50" fill="#000"/>
      <rect x="-3" y="-100" width="40" height="10" fill="#777"/>
    </g>
    
    <!-- Snail Head -->
    <circle cx="50" cy="-50" r="15" fill="url(#bodyGradient)"/>
    <line x1="50" y1="-50" x2="80" y2="-70" stroke="#FF99FF" stroke-width="3"/>
    <line x1="50" y1="-50" x2="80" y2="-30" stroke="#FF99FF" stroke-width="3"/>
    
    <!-- Stars -->
    <g filter="url(#glow)">
      <polygon points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
      <polygon x="150" y="100" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
      <polygon x="200" y="50" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
      <polygon x="50" y="180" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
      <polygon x="250" y="120" points="10,0 5,8 -5,5 -8,-5 -5,-8 5,-5 0,-8" fill="#FFF"/>
    </g>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Sky Gradient -->
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#0b003b" />
      <stop offset="100%" stop-color="#1b006b" />
    </radialGradient>
    <!-- Glow Gradient -->
    <radialGradient id="glow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(255, 255, 255, 0.8)" />
      <stop offset="100%" stop-color="rgba(255, 255, 255, 0)" />
    </radialGradient>
    <!-- Shell Gradient -->
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4e54c8" />
      <stop offset="100%" stop-color="#8f94fb" />
    </linearGradient>
    <!-- Window Pattern -->
    <pattern id="windowPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="10" height="10" fill="#4e54c8" />
      <circle cx="3" cy="3" r="1" fill="#ffd700" />
      <circle cx="7" cy="7" r="1" fill="#ffd700" />
      <circle cx="3" cy="7" r="1" fill="#ffd700" />
      <circle cx="7" cy="3" r="1" fill="#ffd700" />
    </pattern>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="50" cy="60" r="1.5"/>
    <circle cx="120" cy="80" r="1"/>
    <circle cx="200" cy="40" r="2"/>
    <circle cx="250" cy="70" r="1"/>
    <circle cx="180" cy="120" r="1.5"/>
    <circle cx="80" cy="150" r="1"/>
    <circle cx="220" cy="200" r="1.5"/>
    <circle cx="60" cy="220" r="1"/>
    <circle cx="140" cy="250" r="2"/>
    <circle cx="270" cy="180" r="1"/>
  </g>
  <!-- Glow Effect -->
  <circle cx="150" cy="150" r="100" fill="url(#glow)" />
  <!-- Snail Body -->
  <ellipse cx="150" cy="220" rx="20" ry="10" fill="#6b5b95" />
  <!-- Snail Head -->
  <circle cx="135" cy="215" r="5" fill="#f7cac9" />
  <circle cx="165" cy="215" r="5" fill="#f7cac9" />
  <!-- Snail Antennae -->
  <path d="M135 210 Q130 205 125 210" stroke="#f7cac9" stroke-width="1" fill="none"/>
  <path d="M165 210 Q170 205 175 210" stroke="#f7cac9" stroke-width="1" fill="none"/>
  <!-- Skyscraper Shell -->
  <g transform="translate(150,220)">
    <path d="
      M0,0
      spiral path representation
    " fill="url(#shellGradient)" />
    <!-- Simplified as concentric rectangles to represent skyscrapers -->
    <g fill="url(#windowPattern)">
      <rect x="-30" y="-30" width="60" height="60" />
      <rect x="-25" y="-25" width="50" height="50" />
      <rect x="-20" y="-20" width="40" height="40" />
      <rect x="-15" y="-15" width="30" height="30" />
      <rect x="-10" y="-10" width="20" height="20" />
      <rect x="-5" y="-5" width="10" height="10" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission captures the concept more effectively with the skyscraper shell and the glowing, starry night sky.

    The composition includes a clearer representation of the skyscraper and the atmospheric background, adhering closely to the prompt.

    Player 1's image is more abstract and does not clearly depict the elements of a snail or a skyscraper shell.

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
18
Player 2
29
Rectangles

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

Player 1
9
Player 2
8
Circles

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

Player 1
2
Player 2
17
Ellipses

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

Player 1
Player 2
1
Lines

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

Player 1
2
Player 2
Polygons

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

Player 1
5
Player 2
Paths

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

Player 1
Player 2
3
Groups

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
10

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

Complexity Metrics

Path Commands

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

Player 1
Player 2
29
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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