Back

SVG Drawing Match #1249

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating city above a giant sleeping cat, geometric style"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cityGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#66b3ff"/>
      <stop offset="100%" style="stop-color:#99ccff"/>
    </linearGradient>
    <linearGradient id="catGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff9966"/>
      <stop offset="100%" style="stop-color:#ff6633"/>
    </linearGradient>
  </defs>
  <g transform="translate(150,150)">
    <!-- City -->
    <g transform="translate(0,-80)">
      <rect x="-100" y="-50" width="200" height="40" fill="url(#cityGradient)" rx="10"/>
      <rect x="-70" y="-70" width="40" height="40" fill="#99ccff" rx="5"/>
      <rect x="-40" y="-90" width="80" height="60" fill="#66b3ff" rx="10"/>
      <path d="M-20,-30 L20,-30 L0,-10 Z" fill="#99ccff"/>
      <rect x="-100" y="-10" width="200" height="30" fill="#66b3ff" rx="10"/>
    </g>
    
    <!-- Cat -->
    <path d="M-100,-20 Q-120,20 -100,50 L100,50 Q120,20 100,-20 Z" fill="url(#catGradient)"/>
    <path d="M-40,20 Q-30,10 -20,20" fill="#ffffff"/>
    <path d="M30,20 Q20,10 10,20" fill="#ffffff"/>
    <rect x="-50" y="50" width="100" height="20" fill="#ff6633"/>
    <path d="M-70,40 Q-60,30 -50,40" fill="#ffffff"/>
    <path d="M50,40 Q60,30 70,40" fill="#ffffff"/>
    
    <!-- Clouds -->
    <g transform="translate(-80,80)">
      <circle cx="0" cy="0" r="10" fill="#ffffff"/>
      <circle cx="20" cy="0" r="15" fill="#ffffff"/>
      <circle cx="40" cy="-10" r="10" fill="#ffffff"/>
    </g>
    <g transform="translate(80,80)">
      <circle cx="0" cy="0" r="10" fill="#ffffff"/>
      <circle cx="-20" cy="0" r="15" fill="#ffffff"/>
      <circle cx="-40" cy="-10" r="10" fill="#ffffff"/>
    </g>
    
    <!-- Stars -->
    <g opacity="0.5">
      <circle cx="-80" cy="-80" r="2" fill="#ffffff"/>
      <circle cx="80" cy="-80" r="2" fill="#ffffff"/>
      <circle cx="-40" cy="-60" r="2" fill="#ffffff"/>
      <circle cx="40" cy="-60" r="2" fill="#ffffff"/>
    </g>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#1a0c33"/>
      <stop offset="1" stop-color="#4a3b6d"/>
    </linearGradient>
    <radialGradient id="catGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="70%" stop-color="#3d2b5e"/>
      <stop offset="100%" stop-color="#211432"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Sleeping Cat -->
  <g transform="translate(50 200) scale(1.2)">
    <path d="M0 60 Q50 -20 100 60 L80 120 Q50 140 20 120 Z" fill="url(#catGrad)"/>
    <polygon points="40,40 60,20 80,40" fill="#69598a"/>
    <ellipse cx="50" cy="80" rx="30" ry="20" fill="#584777"/>
    <path d="M100 60 Q120 30 140 60 L130 100 Q110 110 90 100 Z" fill="#473a62"/>
    <circle cx="20" cy="40" r="8" fill="#f0f0ff"/>
    <circle cx="30" cy="38" r="3" fill="#211432"/>
  </g>

  <!-- Floating City -->
  <g transform="translate(150 80)">
    <polygon points="-40,80 0,0 40,80" fill="#ff6677"/>
    <rect x="-25" y="40" width="50" height="40" fill="#66ccff"/>
    <path d="M-20 100 Q0 60 20 100" fill="none" stroke="#ffcc66" stroke-width="8"/>
    <g transform="translate(0 -30)">
      <circle cx="0" cy="0" r="15" fill="#ffcc66"/>
      <rect x="-10" y="-25" width="20" height="50" fill="#a64dff"/>
      <path d="M-15 15 L15 15 L0 -15 Z" fill="#66ffcc"/>
    </g>
    <path d="M-60 50 L60 50" stroke="#ffffff44" stroke-width="2" stroke-dasharray="4 4"/>
  </g>

  <!-- Atmospheric Elements -->
  <g fill="#ffffff30" filter="url(#glow)">
    <circle cx="70" cy="60" r="3"/>
    <circle cx="230" cy="90" r="2"/>
    <circle cx="180" cy="40" r="4"/>
  </g>

  <!-- Geometric Energy Waves -->
  <g stroke="#a64dff50" stroke-width="2">
    <path d="M50 230 Q150 200 250 230" fill="none"/>
    <path d="M30 250 Q150 220 270 250" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission excels in creativity and adherence to the prompt, effectively depicting a floating city above a giant sleeping cat in a geometric style.

    The use of geometric shapes and a balanced composition contributes to a visually appealing and imaginative representation.

    In contrast, Player 1's image, though technically clean, lacks the distinctive elements that clearly convey the theme of a floating city or a cat.

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
21
Player 2
19
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
10
Player 2
6
Ellipses

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

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

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

Player 1
6
Player 2
7
Groups

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

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
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
4
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
17
Player 2
22
Max Group Nesting

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

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

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