Back

SVG Drawing Match #307

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a transparent shell revealing a tiny whimsical city inside"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Snail body -->
  <circle cx="150" cy="150" r="80" fill="#6a4e4e" />

  <!-- Snail shell -->
  <circle cx="150" cy="150" r="100" fill="#f0f0f0" opacity="0.7" />
  
  <!-- Tiny city inside -->
  <rect x="100" y="100" width="100" height="100" fill="#dbe7e4" />

  <!-- Buildings in the city -->
  <rect x="110" y="110" width="20" height="60" fill="#a8b3b5" />
  <rect x="140" y="120" width="30" height="50" fill="#8a9fa1" />
  <rect x="180" y="100" width="20" height="70" fill="#a8b3b5" />
  <rect x="130" y="170" width="40" height="30" fill="#8a9fa1" />
  <rect x="170" y="155" width="25" height="45" fill="#a8b3b5" />

  <!-- Snail eyes -->
  <circle cx="120" cy="135" r="5" fill="#2d1e1e" />
  <circle cx="180" cy="135" r="5" fill="#2d1e1e" />
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffcc00;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#ff6600;stop-opacity:0.4" />
    </radialGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <rect width="100" height="100" fill="#a2d3e0"/>
      <circle cx="30" cy="80" r="10" fill="#ff5722"/>
      <rect x="60" y="50" width="15" height="25" fill="#ffe17c"/>
      <circle cx="20" cy="60" r="5" fill="#e3f2fd"/>
      <path fill="#42a5f5" d="M70 70 L85 50 L100 70 Z"/>
      <rect x="20" y="10" width="25" height="15" fill="#76ff03"/>
      <rect x="45" y="15" width="10" height="10" fill="#ff5252"/>
    </pattern>
  </defs>
  <g>
    <ellipse cx="150" cy="200" rx="65" ry="40" fill="#6d4c41"/>
    <path d="M85 200 Q75 150 120 140 Q90 110 135 100 Q145 95 155 85 Q165 75 180 95 Q195 115 172 130 Q200 140 180 165 Q160 190 138 185 Q135 200 85 200 Z" fill="none" stroke="#5d4037" stroke-width="3"/>
    
    <ellipse cx="150" cy="170" rx="50" ry="30" fill="url(#shellGradient)" opacity="0.6"/>
    <g clip-path="url(#clip)">
      <ellipse cx="150" cy="170" rx="50" ry="30" fill="url(#cityPattern)" opacity="1"/>
    </g>

    <circle cx="150" cy="170" r="22" fill="#ffcc80" opacity="0.5"/>
    <circle cx="150" cy="170" r="20" fill="#ff9800" />
  </g>
  <text x="150" y="250" font-family="Arial" font-size="16" fill="#424242" text-anchor="middle">Whimsical Snail City</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's image more effectively captures the idea of a snail with a transparent shell revealing a whimsical city inside.

    The use of simple geometric shapes and bright colors creates a playful and imaginative cityscape, adhering closely to the prompt.

    In contrast, Player 1's image is more abstract and lacks clear representation of both a snail and a city inside the shell, reducing its adherence to the prompt and visual appeal.

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
10
Player 2
13
Rectangles

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

Player 1
6
Player 2
4
Circles

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

Player 1
4
Player 2
4
Ellipses

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

Player 1
Player 2
3
Lines

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
12

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
Player 2
14
Max Group Nesting

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

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

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