Back

SVG Drawing Match #1004

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating city on a turtle's back, under a starry sky"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Starry Night -->
  <defs>
    <radialGradient id="nightSky" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#0b0c1a" />
      <stop offset="100%" stop-color="#000000" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#nightSky)" />
  
  <!-- Stars -->
  <g fill="#ffffff">
    <circle cx="30" cy="40" r="1.2" filter="url(#glow)"/>
    <circle cx="80" cy="20" r="1" filter="url(#glow)"/>
    <circle cx="120" cy="50" r="1.5" filter="url(#glow)"/>
    <circle cx="200" cy="30" r="1.2" filter="url(#glow)"/>
    <circle cx="250" cy="60" r="1" filter="url(#glow)"/>
    <circle cx="270" cy="90" r="1.5" filter="url(#glow)"/>
    <circle cx="50" cy="100" r="1.2" filter="url(#glow)"/>
    <circle cx="90" cy="130" r="1" filter="url(#glow)"/>
    <circle cx="160" cy="80" r="1.2" filter="url(#glow)"/>
    <circle cx="220" cy="100" r="1.5" filter="url(#glow)"/>
    <circle cx="180" cy="140" r="1" filter="url(#glow)"/>
    <circle cx="260" cy="150" r="1.2" filter="url(#glow)"/>
    <circle cx="40" cy="180" r="1" filter="url(#glow)"/>
    <circle cx="100" cy="210" r="1.2" filter="url(#glow)"/>
    <circle cx="150" cy="190" r="1" filter="url(#glow)"/>
    <circle cx="200" cy="230" r="1.5" filter="url(#glow)"/>
    <circle cx="270" cy="200" r="1" filter="url(#glow)"/>
  </g>
  
  <!-- Turtle body -->
  <defs>
    <radialGradient id="turtleShell" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4a7c59" />
      <stop offset="100%" stop-color="#2d4e2f" />
    </radialGradient>
  </defs>
  <ellipse cx="150" cy="220" rx="60" ry="40" fill="url(#turtleShell)" stroke="#1f3d24" stroke-width="2"/>
  <!-- Turtle legs -->
  <g fill="#2d4e2f">
    <!-- front left leg -->
    <ellipse cx="100" cy="200" rx="10" ry="18"/>
    <!-- front right leg -->
    <ellipse cx="200" cy="200" rx="10" ry="18"/>
    <!-- back left leg -->
    <ellipse cx="115" cy="245" rx="10" ry="18"/>
    <!-- back right leg -->
    <ellipse cx="185" cy="245" rx="10" ry="18"/>
  </g>
  <!-- Turtle head -->
  <path d="M150,180 Q140,170 150,160 Q160,170 150,180" fill="#2d4e2f"/>
  
  <!-- Floating city on turtle's back -->
  <g>
    <!-- City base platform -->
    <rect x="90" y="140" width="120" height="60" fill="#3b3f45" stroke="#2a2e32" stroke-width="2" rx="8" ry="8"/>
    <!-- Buildings -->
    <rect x="100" y="115" width="15" height="35" fill="#687684" stroke="#4b5563" stroke-width="1"/>
    <rect x="122" y="105" width="20" height="45" fill="#8aa1b2" stroke="#5d7886" stroke-width="1"/>
    <rect x="148" y="120" width="15" height="30" fill="#687684" stroke="#4b5563" stroke-width="1"/>
    <rect x="167" y="110" width="18" height="40" fill="#8aa1b2" stroke="#5d7886" stroke-width="1"/>
    <rect x="190" y="125" width="12" height="25" fill="#687684" stroke="#4b5563" stroke-width="1"/>
    <!-- Roofs and antennas -->
    <line x1="107.5" y1="115" x2="107.5" y2="100" stroke="#c5c7cc" stroke-width="1.5"/>
    <circle cx="107.5" cy="98" r="2" fill="#c5c7cc"/>
    <line x1="132" y1="105" x2="132" y2="90" stroke="#c5c7cc" stroke-width="1.5"/>
    <circle cx="132" cy="88" r="2" fill="#c5c7cc"/>
    <line x1="176.5" y1="110" x2="176.5" y2="95" stroke="#c5c7cc" stroke-width="1.5"/>
    <circle cx="176.5" cy="93" r="2" fill="#c5c7cc"/>
  </g>
  
  <!-- Floating effect: Clouds or mist around city -->
  <g fill="none" stroke="#8a8d93" stroke-width="1">
    <ellipse cx="150" cy="155" rx="65" ry="15" opacity="0.3"/>
    <ellipse cx="150" cy="165" rx="70" ry="12" opacity="0.2"/>
  </g>
  
  <!-- Additional artistic embellishments: Ethereal orbits -->
  <circle cx="150" cy="220" r="72" fill="none" stroke="url(#turtleShell)" stroke-width="0.7" stroke-dasharray="4 4" opacity="0.4"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#191920" />
      <stop offset="50%" stop-color="#21318c" />
      <stop offset="100%" stop-color="#2a416a" />
    </linearGradient>
  </defs>
  <rect fill="url(#skyGradient)" width="300" height="300" rx="10" />

  <!-- Stars -->
  <g fill="#fff">
    <circle cx="23" cy="17" r="2" />
    <circle cx="56" cy="29" r="3" />
    <circle cx="92" cy="12" r="2" />
    <circle cx="127" cy="34" r="3" />
    <circle cx="169" cy="9" r="2" />
    <circle cx="210" cy="39" r="3" />
    <circle cx="247" cy="19" r="2" />
    <circle cx="42" cy="110" r="3" />
    <circle cx="144" cy="175" r="2" />
    <circle cx="271" cy="154" r="3" />
  </g>

  <!-- Turtle -->
  <g transform="translate(50 150)">
    <path fill="#374f5a" d="M -47 49 C -48 49 -49 48 -49 46 C -49 43 -47 40 -43 40 C -41 40 -40 41 -40 43 L 40 43 C 40 41 41 40 43 40 C 47 40 49 43 49 46 C 49 48 48 49 47 49 Z" />
    <path fill="#687c99" d="M -47 50 C -47 52 -45 54 -43 54 C -41 54 -40 52 -40 49 L 40 49 C 40 52 41 54 43 54 C 45 54 47 52 47 49 Z" />
    <path fill="#2d455e" d="M -42 36 C -41 36 -40 35 -40 33 C -40 31 -41 29 -42 29 C -43 29 -44 30 -45 31 C -46 32 -45 33 -45 35 C -45 37 -46 38 -47 39 C -43 38 -39 39 -35 41 L -13 21 C -12 22 -12 23 -13 24 C -13 26 -12 27 -11 28 L -39 19 C -40 18 -41 18 -41 17 L -39 15 C -41 16 -42 18 -41 20 Z" />
    <path fill="#374f5a" d="M -39 18 L -35 15 L -28 18 L -24 14 Z" />
    <path fill="#374f5a" d="M 39 18 L 35 15 L 28 18 L 24 14 Z" />
    <path fill="#374f5a" d="M 42 39 C 44 37 45 35 45 33 C 45 30 43 28 41 27 L 44 26 C 46 26 47 27 47 29 C 47 32 45 34 42 36 Z" />
  </g>

  <!-- City -->
  <g transform="translate(100 120)">
    <rect fill="#fcf6c1" x="20" y="0" width="100" height="40" rx="10" />
    <rect fill="#9ec34a" x="25" y="10" width="30" height="30" rx="5" />
    <rect fill="#9ec34a" x="65" y="10" width="30" height="30" rx="5" />
    <path fill="#455a64" d="M 23 50 L 103 50 L 98 42 L 27 42 Z" />
    <path fill="#455a64" d="M 78 56 L 82 62 L 88 56 Z" />
    <path fill="#455a64" d="M 35 56 L 39 62 L 45 56 Z" />
    <path fill="#455a64" d="M 98 54 C 99 53 101 51 100 50 C 100 49 98 48 97 48 C 96 48 95 49 95 50 L 93 54 Z" />
    <path fill="#455a64" d="M 27 54 C 27 53 26 51 25 50 C 25 49 27 48 28 48 C 29 48 31 49 31 50 L 33 54 Z" />
  </g>

  <!-- Wavy water -->
  <g fill="#1d2734">
    <path d="M 0 230 L 30 230 S 33 255 52 230 L 70 230 S 77 250 96 230 L 125 230 S 125 245 140 230 L 170 230 S 167 255 188 230 L 200 230 S 200 245 215 230 L 235 230 S 228 255 246 230 L 268 230 S 268 255 281 230 Z" />
  </g>

  <!-- Reflections -->
  <g fill="#374f5a" fill-opacity="0.3">
    <path transform="translate(100 230)" d="M -47 19 C -48 19 -49 18 -49 16 C -49 13 -47 10 -43 10 C -41 10 -40 11 -40 13 L 40 13 C 40 11 41 10 43 10 C 47 10 49 13 49 16 C 49 18 48 19 47 19 Z" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image effectively captures the prompt with a clear depiction of a city on a turtle's back under a starry sky.

    The composition is well-organized, and the technical execution is strong with a clear silhouette of the turtle.

    Player 2's image lacks the clarity and adherence to the prompt, as the turtle and city elements are not distinct or recognizable.

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
39
Player 2
27
Rectangles

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

Player 1
7
Player 2
4
Circles

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

Player 1
21
Player 2
10
Ellipses

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

Player 1
7
Player 2
Lines

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

Player 1
3
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
13
Groups

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

Player 1
4
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
1
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
11

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
3

Complexity Metrics

Path Commands

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

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