Back

SVG Drawing Match #1668

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating cityscape on a giant tortoise shell"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Tortoise Shell -->
  <defs>
    <filter id="tortoise-shell">
      <feGaussianBlur stdDeviation="4" result="shadow"/>
      <feMerge>
        <feMergeNode in="shadow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="shell-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <circle cx="50" cy="50" r="45" fill="#8b4513" />
      <circle cx="50" cy="50" r="40" fill="#deb887" />
      <circle cx="50" cy="50" r="35" fill="#a0522d" />
    </pattern>
  </defs>

  <!-- Sky Background -->
  <rect width="300" height="300" fill="linear-gradient(to bottom, #1a1a8f, #2d2d8f, #4545a3, #6b6bb8, #8a8acb)"/>

  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="150" cy="80" r="1" fill="white"/>
    <circle cx="250" cy="60" r="1" fill="white"/>
    <circle cx="120" cy="140" r="1" fill="white"/>
    <circle cx="180" cy="220" r="1" fill="white"/>
    <circle cx="80" cy="260" r="1" fill="white"/>
  </g>

  <!-- Tortoise Shell Shape -->
  <path d="M50,200 Q150,300 250,200 Q300,100 250,50 Q200,0 150,50 Q100,100 50,200Z" 
        fill="url(#shell-pattern)" filter="url(#tortoise-shell)"/>

  <!-- Cityscape -->
  <g id="city">
    <!-- Main Tower -->
    <path d="M150,50 L160,50 L170,40 L170,30 L160,30 L150,40 L140,30 L140,40 L130,50 L140,60 L150,50Z"
          fill="linear-gradient(to top, #ffd700, #ffd700, #ff8c00)" />
    
    <!-- Building 1 -->
    <rect x="100" y="80" width="40" height="80" fill="linear-gradient(to top, #808080, #a0a0a0)" />
    <path d="M100,80 L120,80 L125,75 L115,75 L100,80Z" fill="#303030"/>
    
    <!-- Building 2 -->
    <rect x="200" y="100" width="30" height="70" fill="linear-gradient(to top, #a0522d, #deb887)" />
    <path d="M200,100 L230,100 L225,95 L220,95 L200,100Z" fill="#454545"/>
    
    <!-- Bridge -->
    <path d="M140,120 L160,120 L165,125 L155,125Z" fill="#808080"/>
    
    <!-- Windows and Details -->
    <rect x="110" y="90" width="10" height="10" fill="#add8e6"/>
    <rect x="120" y="90" width="10" height="10" fill="#add8e6"/>
    <rect x="110" y="110" width="10" height="10" fill="#add8e6"/>
    <rect x="120" y="110" width="10" height="10" fill="#add8e6"/>
  </g>

  <!-- Clouds -->
  <g id="clouds">
    <path d="M50,220 Q60,200 70,220 Q80,240 60,260 Q40,240 30,220Z" fill="#ffffff" opacity="0.8"/>
    <path d="M200,280 Q220,270 230,280 Q240,290 220,300 Q200,290 180,280Z" fill="#ffffff" opacity="0.8"/>
  </g>

  <!-- Tortoise Head and Legs -->
  <path d="M250,250 L270,250 L280,240 L270,230Z" fill="#8b4513"/>
  <path d="M50,250 L30,250 L25,240 L30,230Z" fill="#8b4513"/>
  <rect x="0" y="290" width="300" height="10" fill="#8b4513"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="tortoiseGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#5C4033"/>
    </radialGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </linearGradient>
    <pattern id="tortoisePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#A0522D"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <ellipse cx="150" cy="250" rx="120" ry="50" fill="url(#tortoiseGradient)" stroke="#5C4033" stroke-width="5"/>
  <ellipse cx="150" cy="240" rx="100" ry="40" fill="url(#tortoisePattern)" opacity="0.8"/>
  <circle cx="150" cy="150" r="80" fill="#F4A460" stroke="#8B4513" stroke-width="5"/>
  <rect x="100" y="120" width="100" height="60" fill="#708090" transform="rotate(-10 150 150)"/>
  <circle cx="130" cy="130" r="10" fill="#FFD700"/>
  <circle cx="170" cy="130" r="10" fill="#FFD700"/>
  <rect x="120" y="140" width="60" height="20" fill="#B0C4DE" transform="rotate(-10 150 150)"/>
  <polygon points="150,100 130,150 170,150" fill="#A0522D"/>
  <circle cx="150" cy="100" r="10" fill="#FFD700"/>
  <line x1="150" y1="100" x2="150" y2="120" stroke="#FFD700" stroke-width="3"/>
  <line x1="130" y1="150" x2="170" y2="150" stroke="#FFD700" stroke-width="3"/>
  <circle cx="150" cy="250" r="10" fill="#8B4513"/>
  <circle cx="150" cy="270" r="5" fill="#5C4033"/>
  <text x="150" y="280" font-size="10" fill="#FFFFFF" text-anchor="middle">Floating Cityscape</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's submission creatively integrates the cityscape with the tortoise shell, showcasing buildings that appear naturally part of the shell's structure.

    The use of geometric patterns and subtle lighting effects enhances the visual appeal and gives a sense of depth.

    In contrast, Player 2's design is more abstract and less coherent in representing a cityscape, making Player 1's image more aligned with the prompt.

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

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

Player 1
8
Player 2
3
Circles

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

Player 1
9
Player 2
7
Ellipses

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

Player 1
Player 2
2
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
9
Player 2
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

Player 1
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
10

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
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
55
Player 2
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
2
Player 2
3
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