Back

SVG Drawing Match #2717

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat juggling planets in space."

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Space -->
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a0033" />
      <stop offset="50%" stop-color="#0c001f" />
      <stop offset="100%" stop-color="#000000" />
    </radialGradient>
    
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8" />
      <circle cx="30" cy="25" r="0.6" fill="white" opacity="0.7" />
      <circle cx="55" cy="15" r="1" fill="white" opacity="0.9" />
      <circle cx="70" cy="45" r="0.7" fill="white" opacity="0.8" />
      <circle cx="85" cy="30" r="0.5" fill="white" opacity="0.6" />
      <circle cx="15" cy="80" r="0.9" fill="white" opacity="0.8" />
      <circle cx="40" cy="70" r="0.6" fill="white" opacity="0.7" />
      <circle cx="65" cy="85" r="0.8" fill="white" opacity="0.9" />
      <circle cx="90" cy="60" r="0.7" fill="white" opacity="0.7" />
    </pattern>
    
    <!-- Planet Gradients -->
    <radialGradient id="earthGradient" cx="40%" cy="40%" r="60%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#4b93ff" />
      <stop offset="50%" stop-color="#2a5dc7" />
      <stop offset="100%" stop-color="#1e3c7b" />
    </radialGradient>
    
    <radialGradient id="marsGradient" cx="40%" cy="40%" r="60%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#ff9d76" />
      <stop offset="50%" stop-color="#e06242" />
      <stop offset="100%" stop-color="#a13c27" />
    </radialGradient>
    
    <radialGradient id="saturnGradient" cx="40%" cy="40%" r="60%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#f6e5a6" />
      <stop offset="50%" stop-color="#d6b35b" />
      <stop offset="100%" stop-color="#a68a3f" />
    </radialGradient>
    
    <linearGradient id="ringGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#d6b35b" stop-opacity="0.1" />
      <stop offset="20%" stop-color="#f6e5a6" stop-opacity="0.9" />
      <stop offset="50%" stop-color="#d6b35b" stop-opacity="0.7" />
      <stop offset="80%" stop-color="#f6e5a6" stop-opacity="0.9" />
      <stop offset="100%" stop-color="#d6b35b" stop-opacity="0.1" />
    </linearGradient>
    
    <!-- Cat Gradients -->
    <linearGradient id="catBodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4a4a4a" />
      <stop offset="70%" stop-color="#2a2a2a" />
      <stop offset="100%" stop-color="#1a1a1a" />
    </linearGradient>
    
    <radialGradient id="catEyeGradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#7aff9b" />
      <stop offset="90%" stop-color="#00a826" />
    </radialGradient>
  </defs>
  
  <!-- Space Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)" />
  
  <!-- Distant Planets and Cosmic Elements -->
  <circle cx="40" cy="40" r="15" fill="#ffd6aa" opacity="0.7" filter="url(#glow)" />
  <ellipse cx="260" cy="60" rx="20" ry="8" fill="#aa88ff" opacity="0.5" filter="url(#glow)" transform="rotate(-15, 260, 60)" />
  <path d="M20,230 Q60,270 100,230" stroke="#ff88aa" stroke-width="2" fill="none" opacity="0.6" filter="url(#glow)" />
  
  <!-- Cat Body -->
  <g id="cat" transform="translate(150, 170)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#catBodyGradient)" />
    
    <!-- Head -->
    <circle cx="0" cy="-45" r="25" fill="url(#catBodyGradient)" />
    
    <!-- Ears -->
    <path d="M-15,-65 L-25,-85 L-5,-70 Z" fill="#2a2a2a" />
    <path d="M15,-65 L25,-85 L5,-70 Z" fill="#2a2a2a" />
    <path d="M-17,-67 L-23,-80 L-10,-70 Z" fill="#ff9cce" />
    <path d="M17,-67 L23,-80 L10,-70 Z" fill="#ff9cce" />
    
    <!-- Eyes -->
    <ellipse cx="-10" cy="-48" rx="7" ry="9" fill="#ffffff" />
    <ellipse cx="10" cy="-48" rx="7" ry="9" fill="#ffffff" />
    <ellipse cx="-10" cy="-48" rx="4" ry="6" fill="url(#catEyeGradient)" />
    <ellipse cx="10" cy="-48" rx="4" ry="6" fill="url(#catEyeGradient)" />
    <ellipse cx="-11" cy="-50" rx="2" ry="2" fill="#000000" />
    <ellipse cx="9" cy="-50" rx="2" ry="2" fill="#000000" />
    <ellipse cx="-12" cy="-52" rx="1" ry="1" fill="#ffffff" />
    <ellipse cx="8" cy="-52" rx="1" ry="1" fill="#ffffff" />
    
    <!-- Nose and Mouth -->
    <path d="M0,-40 L-3,-37 L3,-37 Z" fill="#ff9cce" />
    <path d="M0,-37 L0,-33" stroke="#333333" stroke-width="1" fill="none" />
    <path d="M0,-33 Q-8,-29 -12,-33" stroke="#333333" stroke-width="1" fill="none" />
    <path d="M0,-33 Q8,-29 12,-33" stroke="#333333" stroke-width="1" fill="none" />
    
    <!-- Whiskers -->
    <line x1="-12" y1="-38" x2="-35" y2="-42" stroke="#444444" stroke-width="1" />
    <line x1="-12" y1="-36" x2="-35" y2="-36" stroke="#444444" stroke-width="1" />
    <line x1="-12" y1="-34" x2="-35" y2="-30" stroke="#444444" stroke-width="1" />
    <line x1="12" y1="-38" x2="35" y2="-42" stroke="#444444" stroke-width="1" />
    <line x1="12" y1="-36" x2="35" y2="-36" stroke="#444444" stroke-width="1" />
    <line x1="12" y1="-34" x2="35" y2="-30" stroke="#444444" stroke-width="1" />
    
    <!-- Paws -->
    <circle cx="-35" cy="15" r="12" fill="#2a2a2a" />
    <circle cx="35" cy="15" r="12" fill="#2a2a2a" />
    <circle cx="-35" cy="15" r="8" fill="#222222" />
    <circle cx="35" cy="15" r="8" fill="#222222" />
    
    <!-- Tail -->
    <path d="M-15,35 C-40,45 -50,65 -30,85" stroke="#2a2a2a" stroke-width="12" fill="none" stroke-linecap="round" />
  </g>
  
  <!-- Juggling Planets -->
  <!-- Earth -->
  <g transform="translate(80, 90)">
    <circle cx="0" cy="0" r="22" fill="url(#earthGradient)" filter="url(#glow)" />
    <path d="M-15,-10 Q-5,10 5,-5 Q15,15 18,0" stroke="#7aff9b" stroke-width="2" fill="none" opacity="0.7" />
    <path d="M-18,5 Q-10,0 0,8 Q10,5 15,10" stroke="#7aff9b" stroke-width="2" fill="none" opacity="0.7" />
  </g>
  
  <!-- Mars -->
  <g transform="translate(220, 90)">
    <circle cx="0" cy="0" r="18" fill="url(#marsGradient)" filter="url(#glow)" />
    <circle cx="5" cy="-5" r="4" fill="#c45334" />
    <circle cx="-8" cy="8" r="5" fill="#c45334" />
  </g>
  
  <!-- Saturn -->
  <g transform="translate(150, 60)">
    <circle cx="0" cy="0" r="20" fill="url(#saturnGradient)" filter="url(#glow)" />
    <ellipse cx="0" cy="0" rx="30" ry="7" fill="url(#ringGradient)" transform="rotate(15, 0, 0)" />
  </g>
  
  <!-- Juggling Motion Lines -->
  <path d="M150,110 C130,140 90,160 80,90" stroke="#ffffff" stroke-width="1" stroke-dasharray="3,3" fill="none" opacity="0.6" />
  <path d="M150,110 C170,140 210,160 220,90" stroke="#ffffff" stroke-width="1" stroke-dasharray="3,3" fill="none" opacity="0.6" />
  <path d="M80,90 C120,60 180,60 220,90" stroke="#ffffff" stroke-width="1" stroke-dasharray="3,3" fill="none" opacity="0.6" />
  
  <!-- Sparkles and Stars -->
  <g filter="url(#glow)">
    <path d="M70,80 L75,85 L80,80 L75,75 Z" fill="#ffffff" opacity="0.9" />
    <path d="M230,80 L235,85 L240,80 L235,75 Z" fill="#ffffff" opacity="0.9" />
    <path d="M150,50 L155,55 L160,50 L155,45 Z" fill="#ffffff" opacity="0.9" />
    <circle cx="90" cy="100" r="1" fill="#ffffff" opacity="0.9" />
    <circle cx="210" cy="100" r="1" fill="#ffffff" opacity="0.9" />
    <circle cx="160" cy="70" r="1" fill="#ffffff" opacity="0.9" />
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#00072D"/>
      <stop offset="100%" stop-color="#0A2472"/>
    </radialGradient>
    <linearGradient id="planet1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF6B6B"/>
      <stop offset="100%" stop-color="#FFE66D"/>
    </linearGradient>
    <linearGradient id="planet2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4ECDC4"/>
      <stop offset="100%" stop-color="#45B7D1"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#spaceGrad)"/>
  
  <!-- Stars -->
  <g opacity="0.8">
    <circle cx="50" cy="80" r="1.5" fill="white"/>
    <circle cx="250" cy="120" r="2" fill="#A8D0E6"/>
    <circle cx="180" cy="40" r="1.2" fill="white"/>
  </g>

  <!-- Juggling Planets -->
  <g transform="translate(150 150)">
    <g transform="rotate(-30)">
      <circle cx="0" cy="-80" r="25" fill="url(#planet1)" filter="url(#glow)">
        <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="8s" repeatCount="indefinite"/>
      </circle>
      <path d="M-15,-95 Q0,-110 15,-95" stroke="#FFE66D" stroke-width="2" fill="none"/>
    </g>
    <g transform="rotate(30)">
      <circle cx="0" cy="-80" r="20" fill="url(#planet2)" filter="url(#glow)">
        <animateTransform attributeName="transform" type="rotate" from="30" to="390" dur="6s" repeatCount="indefinite"/>
      </circle>
      <ellipse cx="0" cy="-80" rx="30" ry="5" fill="transparent" stroke="#45B7D1" stroke-width="2"/>
    </g>
  </g>

  <!-- Cosmic Cat -->
  <g transform="translate(150 200)">
    <!-- Body -->
    <path d="M-40 0 Q0 -30 40 0 L30 50 Q0 70 -30 50 Z" fill="#FF9A8B"/>
    <!-- Head -->
    <circle r="30" fill="#FF9A8B"/>
    <!-- Ears -->
    <path d="M-25 -25 L-15 -45 Q-25 -50 -35 -40" fill="#FF6B6B"/>
    <path d="M25 -25 L15 -45 Q25 -50 35 -40" fill="#FF6B6B"/>
    <!-- Eyes -->
    <circle cx="-15" cy="-10" r="5" fill="#0A2472"/>
    <circle cx="15" cy="-10" r="5" fill="#0A2472"/>
    <!-- Whiskers -->
    <g stroke="#0A2472" stroke-width="1.5">
      <path d="M-25 0 Q-35 -5 -40 5"/>
      <path d="M-25 5 Q-35 10 -40 15"/>
      <path d="M25 0 Q35 -5 40 5"/>
      <path d="M25 5 Q35 10 40 15"/>
    </g>
    <!-- Tail -->
    <path d="M40 30 Q60 0 80 30 Q70 50 40 30" fill="#FF6B6B"/>
    <!-- Paws -->
    <circle cx="-20" cy="40" r="8" fill="#FF9A8B"/>
    <circle cx="20" cy="40" r="8" fill="#FF9A8B"/>
  </g>

  <!-- Sparkles -->
  <g fill="#FFE66D" opacity="0.7">
    <path d="M110 180 l5-5 5 5-5 5z" transform="rotate(45)"/>
    <path d="M200 220 l3-3 3 3-3 3z" transform="rotate(30)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's submission demonstrates greater creativity and adherence to the prompt by depicting a detailed black cat actively juggling multiple planets with a clear sense of movement and a space-themed background filled with stars.

    In contrast, Player 2's submission is more abstract and minimalistic, with fewer planets and less emphasis on the juggling action, making it less visually engaging and 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
60
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
23
Player 2
10
Ellipses

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

Player 1
11
Player 2
1
Lines

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

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

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

Player 1
5
Player 2
7

Visual Effects Metrics

Gradients

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

Player 1
7
Player 2
3
Patterns

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

Player 1
1
Player 2
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
16
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
26
Player 2
10

Interactivity Metrics

Animations

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

Player 1
Player 2
2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
6
Player 2
6

Complexity Metrics

Path Commands

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

Player 1
57
Player 2
30
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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