Back

SVG Drawing Match #1526

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat juggling planets in a starry galaxy"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Galaxy Background -->
  <defs>
    <radialGradient id="galaxyBg" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#0b0b2d" />
      <stop offset="1" stop-color="#000000" />
    </radialGradient>
    
    <pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <circle cx="50" cy="50" r="1" fill="white" opacity="0.5" />
      <circle cx="20" cy="80" r="1" fill="white" opacity="0.5" />
      <circle cx="80" cy="30" r="1" fill="white" opacity="0.5" />
    </pattern>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow" />
      <feMerge>
        <feMergeNode in="glow" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#galaxyBg)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.6" />

  <!-- Cat -->
  <g transform="translate(150,150)">
    <path d="M 0 -50 C 50 -60, 100 -40, 120 -30, 130 -20, 140 0, 140 40, 130 50, 100 60, 80 50, 40 40, 20 20, 0 0 Z" fill="#f0d9b5" stroke="#a66c1b" stroke-width="2" />
    <path d="M -40 0 L -60 -30 L -40 -60 L -20 -60 L 0 -30 L 20 -60 L 40 -60 L 60 -30 L 40 0 L 20 30 L 0 0" fill="#f0d9b5" stroke="#a66c1b" stroke-width="2" />
    <ellipse cx="0" cy="-40" rx="15" ry="10" fill="#8b4513" />
    <circle cx="-15" cy="-20" r="5" fill="#8b4513" />
    <circle cx="15" cy="-20" r="5" fill="#8b4513" />
    <path d="M 0 -60 L 10 -80 L -10 -80" fill="#8b4513" />
  </g>

  <!-- Planets -->
  <g transform="rotate(90 150 150)">
    <circle cx="150" cy="100" r="20" fill="#4b0082" filter="url(#glow)" />
    <circle cx="100" cy="140" r="25" fill="#008000" filter="url(#glow)" />
    <circle cx="200" cy="140" r="30" fill="#ffa500" filter="url(#glow)" />
  </g>

  <!-- Juggling Lines -->
  <path d="M 150,150 C 150,130 140,110 130,100" stroke="#ffffff" stroke-width="2" />
  <path d="M 150,150 C 150,130 160,110 170,100" stroke="#ffffff" stroke-width="2" />
  <path d="M 150,150 C 150,130 150,110 150,100" stroke="#ffffff" stroke-width="2" />

  <!-- Star Trails -->
  <path d="M 100,100 Q 150,50 200,100" stroke="#ffffff" stroke-width="1" opacity="0.5" />
  <path d="M 200,100 Q 250,150 200,200" stroke="#ffffff" stroke-width="1" opacity="0.5" />
  <path d="M 100,200 Q 150,250 200,200" stroke="#ffffff" stroke-width="1" opacity="0.5" />
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">  
  <defs>
    <radialGradient id="galaxy" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#19072e"/>
      <stop offset="100%" stop-color="#02002a"/>
    </radialGradient>
    
    <radialGradient id="planet1" cx="30%" cy="30%">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#d74141"/>
    </radialGradient>
    
    <linearGradient id="planet2" gradientTransform="rotate(45)">
      <stop offset="0%" stop-color="#7bed9f"/>
      <stop offset="100%" stop-color="#2ed573"/>
    </linearGradient>
    
    <pattern id="crater" patternUnits="userSpaceOnUse" width="8" height="8">
      <circle cx="4" cy="4" r="2" fill="#ffffff55"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#galaxy)"/>
  
  <!-- Stars -->
  <g opacity="0.8">
    <circle cx="35" cy="80" r="1.2" fill="white"/>
    <circle cx="250" cy="40" r="1.5" fill="#a2d5f7"/>
    <circle cx="180" cy="150" r="1" fill="white"/>
    <circle cx="90" cy="200" r="1.3" fill="#a2d5f7"/>
  </g>
  
  <!-- Juggling arc -->
  <path d="M110 160 Q150 60 190 160" stroke="#ffffff44" fill="none" stroke-width="2"/>
  
  <!-- Planets -->
  <circle cx="110" cy="160" r="18" fill="url(#planet1)">
    <animate attributeName="cy" values="160;140;160" dur="2s" repeatCount="indefinite"/>
  </circle>
  <circle cx="150" cy="140" r="22" fill="url(#planet2)">
    <animate attributeName="cx" values="150;155;150" dur="3s" repeatCount="indefinite"/>
  </circle>
  <circle cx="190" cy="160" r="20" fill="#ffd93d">
    <animate attributeName="cy" values="160;150;160" dur="1.5s" repeatCount="indefinite"/>
  </circle>
  
  <!-- Cat body -->
  <path d="M140 220 Q150 180 160 220 L150 270 Z" fill="#ffa94d"/>
  <ellipse cx="150" cy="200" rx="40" ry="30" fill="#ffa94d"/>
  
  <!-- Cat face -->
  <circle cx="130" cy="190" r="8" fill="white"/>
  <circle cx="170" cy="190" r="8" fill="white"/>
  <circle cx="130" cy="190" r="3" fill="#2c3e50"/>
  <circle cx="170" cy="190" r="3" fill="#2c3e50"/>
  <path d="M140 210 Q150 215 160 210" stroke="#2c3e50" fill="none"/>
  
  <!-- Whiskers -->
  <g stroke="#ffffff" stroke-width="0.8">
    <path d="M120 200 Q125 205 135 203"/>
    <path d="M120 195 Q125 200 135 198"/>
    <path d="M180 200 Q175 205 165 203"/>
    <path d="M180 195 Q175 200 165 198"/>
  </g>
  
  <!-- Tail sparkles -->
  <g transform="translate(165 250) rotate(30)" opacity="0.7">
    <path d="M0 0 l5 5 m-5 0 l5 -5" stroke="#ffd93d"/>
    <circle cx="7" cy="7" r="1.2" fill="#a2d5f7"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission is more visually appealing and adheres to the prompt effectively.

    The image clearly depicts a cat-like figure juggling planets within a starry galaxy, creating a whimsical and cohesive scene.

    In contrast, Player 1's image is more abstract and less recognizable as a cat juggling planets, making it less effective in conveying the intended concept.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
8
Player 2
13
Ellipses

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

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

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

Player 1
9
Player 2
8
Groups

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

Player 1
2
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
11

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
1

Complexity Metrics

Path Commands

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

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