Back

SVG Drawing Match #1022

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating city on a giant turtle's back; style: geometric"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#94c5f8"/>
      <stop offset="100%" stop-color="#3d7ecc"/>
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Geometric shapes representing the floating city on a turtle's back -->
  <!-- Turtle's shell made of hexagons -->
  <polygon points="100,100 130,80 160,100 160,140 130,160 100,140" fill="#b79d77"/>
  <polygon points="160,100 190,80 220,100 220,140 190,160 160,140" fill="#b79d77"/>
  <polygon points="130,160 160,140 190,160 190,200 160,220 130,200" fill="#b79d77"/>

  <!-- Buildings on the city -->
  <rect x="110" y="120" width="20" height="50" fill="#f7acbc"/>
  <rect x="150" y="100" width="30" height="70" fill="#f7acbc"/>
  <rect x="190" y="130" width="20" height="40" fill="#f7acbc"/>
  
  <!-- Windows on the buildings -->
  <circle cx="120" cy="140" r="3" fill="#ffd829"/>
  <circle cx="120" cy="160" r="3" fill="#ffd829"/>
  <circle cx="160" cy="110" r="3" fill="#ffd829"/>
  <circle cx="160" cy="130" r="3" fill="#ffd829"/>
  <circle cx="160" cy="150" r="3" fill="#ffd829"/>
  <circle cx="160" cy="170" r="3" fill="#ffd829"/>
  <circle cx="200" cy="140" r="3" fill="#ffd829"/>
  <circle cx="200" cy="160" r="3" fill="#ffd829"/>

  <!-- Sun in the sky -->
  <circle cx="250" cy="50" r="20" fill="#ffd700"/>

  <!-- Decorative border -->
  <rect x="0" y="0" width="300" height="300" fill="none" stroke="#000" stroke-width="5"/>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="turtleShellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#2c3e50" />
      <stop offset="50%" stop-color="#34495e" />
      <stop offset="100%" stop-color="#2c3e50" />
    </linearGradient>
    <pattern id="cityPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#e74c3c" />
      <rect x="10" y="0" width="10" height="10" fill="#f39c12" />
      <rect x="0" y="10" width="10" height="10" fill="#2ecc71" />
      <rect x="10" y="10" width="10" height="10" fill="#3498db" />
    </pattern>
  </defs>
  <g transform="translate(50, 100)">
  <path d="M50,150 C50,75 150,75 150,150 C150,225 50,225 50,150 Z" fill="url(#turtleShellGradient)" stroke="#1c2833" stroke-width="5" />
    <path d="M75,140 C75,120 125,120 125,140" fill="#1c2833" />
    <path d="M75,160 C75,180 125,180 125,160" fill="#1c2833" />
    <circle cx="60" cy="170" r="10" fill="#1c2833" />
    <circle cx="140" cy="170" r="10" fill="#1c2833" />
    <polygon points="50,130 25,100 75,100" fill="#1c2833"/>
    <polygon points="150,130 175,100 125,100" fill="#1c2833"/>
  </g>
  <g transform="translate(60, 50)">
    <rect x="0" y="0" width="40" height="60" fill="url(#cityPattern)" />
    <polygon points="20,0 0,20 40,20" fill="#9b59b6" />
    <polygon points="20,60 0,40 40,40" fill="#8e44ad" />
      <circle cx="20" cy="80" r="20" fill="#2980b9"  />
      <g transform="translate(60,0)">
          <rect x="0" y="20" width="40" height="40" fill="#e67e22" />
          <polygon points="20,20 0,40 40,40" fill="#d35400"/>
          <rect x="10" y="0" width="20" height="20" fill="#c0392b"/>
      </g>
      <g transform="translate(100, 20)">
        <circle cx="20" cy="20" r="20" fill="#27ae60"  />
         <polygon points="40,40 20,20 40,20 " fill="#2ecc71"/>
      </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission better captures the idea of a 'floating city on a giant turtle's back' with a more detailed and colorful geometric approach.

    The composition is visually dynamic, using a variety of shapes to depict both the city and the turtle effectively.

    Player 1's submission, while creative, is simpler and less evocative of the prompt's theme.

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

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

Player 1
5
Player 2
7
Circles

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

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

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

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

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
14

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
4

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
8
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
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