Back

SVG Drawing Match #1230

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating city atop a giant turtle, stars above, abstract style"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <radialGradient id="sky" cx="150" cy="300" r="350" gradientUnits="userSpaceOnUse">
    <stop offset="0%" stop-color="#1A2A6C"/>
    <stop offset="50%" stop-color="#5C258D"/>
    <stop offset="100%" stop-color="#A6708A"/>
  </radialGradient>
  <rect width="300" height="300" fill="url(#sky)"/>
  <g transform="translate(50 150)">
    <ellipse cx="100" cy="80" rx="100" ry="30" fill="#1A1919"/>
    <ellipse cx="100" cy="85" rx="90" ry="25" fill="#221F20"/>
    <path d="M30,50 C50,10 150,10 170,50 L170,70 C150,30 50,30 30,70 Z" fill="#493940"/>
    <g transform="translate(30,50) rotate(-15)">
      <polygon points="0,0 15,-15 30,0" fill="#281B1E"/>
    </g>
     <g transform="translate(130,50) rotate(15) scale(1,-1)">
      <polygon points="0,0 15,-15 30,0" fill="#281B1E"/>
    </g>
     <g transform="translate(170,50) rotate(-15)">
      <polygon points="0,0 15,-15 30,0" fill="#281B1E"/>
    </g>
    <circle cx="50" cy="75" r="7" fill="#756B6E"/>
    <circle cx="150" cy="75" r="7" fill="#756B6E"/>
  </g>
  <g fill="#FAF9F6">
    <circle cx="50" cy="50" r="5" />
    <circle cx="100" cy="20" r="3" />
    <circle cx="150" cy="80" r="7" />
    <circle cx="200" cy="40" r="2" />
    <circle cx="250" cy="60" r="6" />
    <circle cx="280" cy="20" r="4" />
  </g>
  <g transform="translate(70 50)">
    <path d="M 50 80 L 80 50 L 120 50 L 140 70 L 110 100 L 70 100 Z" fill="#EAA639" stroke="#B87F1D" stroke-width="3"/>
    <circle cx="60" cy="90" r="10" fill="#FEF200"/>
    <rect x="90" y="40" width="30" height="20" fill="#65D3F0"/>
    <polygon points="120,40 150,50 130,70" fill="#DA2C38"/> 
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and texture -->
  <rect width="300" height="300" fill="url(#bgGrad)" opacity="0.8"/>
  
  <!-- Starry sky with abstract patterns -->
  <g id="stars">
    <path d="M50 50 L60 45 L65 50 L60 55 L50 50" fill="white" stroke="white" stroke-width="1" opacity="0.6"/>
    <path d="M100 70 L110 65 L115 70 L110 75 L100 70" fill="white" stroke="white" stroke-width="1" opacity="0.6"/>
    <path d="M200 40 L210 35 L215 40 L210 45 L200 40" fill="white" stroke="white" stroke-width="1" opacity="0.6"/>
    <path d="M150 90 L160 85 L165 90 L160 95 L150 90" fill="white" stroke="white" stroke-width="1" opacity="0.6"/>
  </g>

  <!-- Giant turtle with abstract shell -->
  <g transform="translate(150,200)">
    <!-- Turtle shell -->
    <ellipse cx="0" cy="0" rx="80" ry="40" fill="url(#turtleGrad)" stroke="#4A2B0F" stroke-width="4"/>
    <!-- Turtle body -->
    <circle cx="0" cy="60" r="25" fill="url(#turtleBodyGrad)" stroke="#2B120F" stroke-width="3"/>
    <!-- Legs and neck -->
    <path d="M-40-20 Q-20-30 0-40" stroke="#4A2B0F" stroke-width="4" fill="none"/>
    <path d="M40-20 Q20-30 0-40" stroke="#4A2B0F" stroke-width="4" fill="none"/>
  </g>

  <!-- Floating city -->
  <g transform="translate(150,100)" opacity="0.9">
    <!-- City structures with varying colors and gradients -->
    <rect x="-60" y="-40" width="120" height="80" fill="url(#cityGrad1)" stroke="#663300" stroke-width="3"/>
    <circle cx="0" cy="-80" r="30" fill="url(#cityGrad2)" stroke="#663300" stroke-width="3"/>
    <path d="M-40-20 L0-40 L40-20" fill="url(#cityGrad3)" stroke="#663300" stroke-width="2"/>
  </g>

  <!-- Abstract lines and curves for movement -->
  <path d="M0 0 Q150 50 300 0" stroke="rgba(255,255,255,0.3)" stroke-width="4" fill="none"/>
  <path d="M300 300 Q150 250 0 300" stroke="rgba(255,255,255,0.3)" stroke-width="4" fill="none"/>

  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="bgGrad" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
      <stop stop-color="#1A0F5E" offset="0"/>
      <stop stop-color="#4A2B0F" offset="1"/>
    </linearGradient>
    
    <radialGradient id="turtleGrad" cx="150" cy="150" r="100" fx="150" fy="150">
      <stop stop-color="#4A2B0F" offset="0"/>
      <stop stop-color="#6B3F1E" offset="1"/>
    </radialGradient>
    
    <radialGradient id="turtleBodyGrad" cx="150" cy="150" r="50" fx="150" fy="150">
      <stop stop-color="#2B120F" offset="0"/>
      <stop stop-color="#4A2B0F" offset="1"/>
    </radialGradient>
    
    <linearGradient id="cityGrad1" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#FF9A00" offset="0"/>
      <stop stop-color="#FF6B00" offset="1"/>
    </linearGradient>
    
    <linearGradient id="cityGrad2" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#FFD700" offset="0"/>
      <stop stop-color="#FFA500" offset="1"/>
    </linearGradient>
    
    <linearGradient id="cityGrad3" x1="0" y1="0" x2="100" y2="0" gradientUnits="userSpaceOnUse">
      <stop stop-color="#FFB300" offset="0"/>
      <stop stop-color="#FF8C00" offset="1"/>
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 1

Judge's Analysis

    Player 1's submission features a more identifiable abstract representation of a floating city atop a turtle, with the city elements and turtle shell distinctively outlined.

    The inclusion of stars adds to the adherence to the prompt, enhancing the overall composition.

    Player 2's submission, while creative, lacks the clear depiction of the turtle component, affecting adherence to the 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
19
Player 2
14
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
9
Player 2
2
Ellipses

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

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

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

Player 1
2
Player 2
9
Groups

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

Player 1
6
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
13

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
13

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
5
Player 2
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
12
Player 2
31
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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