Back

SVG Drawing Match #799

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a transparent shell, revealing a miniature city inside"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="100%" height="100%" fill="linear-gradient(to bottom, #add8e6, #e0f7fa)" />

  <!-- Snail Body -->
  <path d="M170,200 Q150,180 130,200 Q110,220 90,200 Q70,180 50,200 Q30,220 10,200 Q20,250 90,250 Q160,250 170,200"
    fill="#8b5a2b" />

  <!-- Snail Head -->
  <circle cx="180" cy="215" r="15" fill="#8b5a2b" />
  <!-- Eyes -->
  <circle cx="175" cy="210" r="3" fill="#fff" />
  <circle cx="185" cy="210" r="3" fill="#fff" />
  <!-- Pupils -->
  <circle cx="175" cy="210" r="1.5" fill="#000" />
  <circle cx="185" cy="210" r="1.5" fill="#000" />
  <!-- Antennae -->
  <line x1="170" y1="200" x2="160" y2="185" stroke="#8b5a2b" stroke-width="3" />
  <line x1="190" y1="200" x2="200" y2="185" stroke="#8b5a2b" stroke-width="3" />

  <!-- Transparent Shell -->
  <ellipse cx="130" cy="160" rx="60" ry="40" fill="rgba(135,206,235,0.5)" stroke="#4682b4" stroke-width="2" />

  <!-- Miniature City Inside the Shell -->
  <!-- Buildings -->
  <rect x="100" y="130" width="15" height="30" fill="#b0c4de" />
  <rect x="120" y="120" width="20" height="40" fill="#87a2e0" />
  <rect x="145" y="140" width="10" height="20" fill="#b0c4de" />

  <!-- Windows -->
  <circle cx="107" cy="135" r="2" fill="#fff" />
  <circle cx="112" cy="145" r="2" fill="#fff" />
  <circle cx="127" cy="125" r="2" fill="#fff" />
  <circle cx="127" cy="135" r="2" fill="#fff" />
  <circle cx="140" cy="125" r="2" fill="#fff" />
  <circle cx="147" cy="145" r="1.5" fill="#fff" />

  <!-- Trees -->
  <ellipse cx="110" cy="160" rx="3" ry="10" fill="#228b22" />
  <ellipse cx="135" cy="160" rx="3" ry="10" fill="#228b22" />

  <!-- Sun -->
  <circle cx="220" cy="70" r="30" fill="radial-gradient(circle, #ffd700, #ffa500)" />
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Snail Body -->
  <circle cx="150" cy="150" r="120" fill="#FFC080" />
  <circle cx="150" cy="150" r="110" fill="url(#snail-body-pattern)" />
  <circle cx="150" cy="150" r="100" fill="#FFC080" />

  <!-- Transparent Shell -->
  <circle cx="150" cy="150" r="130" fill="url(#shell-gradient)" />

  <!-- Miniature City -->
  <rect x="120" y="100" width="60" height="50" fill="#333" rx="5" />
  <rect x="130" y="110" width="40" height="30" fill="#666" rx="5" />
  <rect x="140" y="120" width="20" height="20" fill="#999" rx="5" />
  <circle cx="150" cy="130" r="10" fill="#CCC" />
  <rect x="160" y="120" width="20" height="20" fill="#999" rx="5" />
  <rect x="170" y="110" width="40" height="30" fill="#666" rx="5" />
  <rect x="180" y="100" width="60" height="50" fill="#333" rx="5" />
  <path d="M140 140 L160 140 L160 160 L140 160 Z" fill="#CCC" />
  <path d="M130 150 L170 150 L170 170 L130 170 Z" fill="#999" />
  <path d="M120 160 L180 160 L180 180 L120 180 Z" fill="#666" />

  <!-- Patterns and Gradients -->
  <defs>
    <pattern id="snail-body-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#FFC080" rx="5" />
      <circle cx="10" cy="10" r="5" fill="#FFC080" />
    </pattern>
    <linearGradient id="shell-gradient" x1="0" y1="0" x2="0" y2="100%" >
      <stop offset="0%" stop-color="#FFC080" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#FFC080" stop-opacity="0.1" />
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image effectively adheres to the prompt by clearly depicting a snail with a transparent shell housing a miniature city.

    The composition is straightforward, with discernible elements representing buildings inside the shell.

    Player 2's image lacks clarity and does not effectively convey the concept of a snail or a city inside a transparent 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
22
Player 2
16
Rectangles

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

Player 1
4
Player 2
7
Circles

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

Player 1
12
Player 2
6
Ellipses

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

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

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

Player 1
1
Player 2
3
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
5

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