Back

SVG Drawing Match #1898

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat juggling planets in space"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc33" />
      <stop offset="100%" stop-color="#ff6600" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66d9ff" />
      <stop offset="100%" stop-color="#0066ff" />
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#aaffaa" />
      <stop offset="100%" stop-color="#55aa55" />
    </radialGradient>
    <linearGradient id="catFur" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#f6d365" />
      <stop offset="100%" stop-color="#fda085" />
    </linearGradient>
    <filter id="spaceBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="1.5" />
    </filter>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="2" cy="2" r="1" fill="white" />
    </pattern>
  </defs>
  <!-- Background space -->
  <rect width="300" height="300" fill="url(#starPattern)" />
  <rect width="300" height="300" fill="black" fill-opacity="0.85" />
  
  <!-- Cat body -->
  <g transform="translate(150 220)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#catFur)" stroke="#000" stroke-width="1"/>
    <!-- Head -->
    <circle cx="0" cy="-30" r="15" fill="url(#catFur)" stroke="#000" stroke-width="1"/>
    <!-- Ears -->
    <polygon points="-10,-40 0,-55 5,-40" fill="url(#catFur)" stroke="#000" stroke-width="1"/>
    <polygon points="10,-40 0,-55 -5,-40" fill="url(#catFur)" stroke="#000" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="-5" cy="-33" r="2.5" fill="black"/>
    <circle cx="5" cy="-33" r="2.5" fill="black"/>
    <!-- Whiskers -->
    <line x1="-12" y1="-30" x2="-24" y2="-28" stroke="black" stroke-width="0.8"/>
    <line x1="-12" y1="-27" x2="-24" y2="-25" stroke="black" stroke-width="0.8"/>
    <line x1="12" y1="-30" x2="24" y2="-28" stroke="black" stroke-width="0.8"/>
    <line x1="12" y1="-27" x2="24" y2="-25" stroke="black" stroke-width="0.8"/>
    <!-- Tail -->
    <path d="M30,0 C50,-10 50,20 30,10" fill="none" stroke="url(#catFur)" stroke-width="5" stroke-linecap="round"/>
  </g>

  <!-- Planets being juggled -->
  <g filter="url(#spaceBlur)">
    <!-- Planet 1 -->
    <circle cx="100" cy="100" r="12" fill="url(#planetGradient1)" stroke="white" stroke-width="1"/>
    <path d="M88,100 A12,12 0 0,1 112,100" stroke="rgba(255,255,255,0.6)" stroke-width="2" fill="none"/>
    
    <!-- Planet 2 -->
    <circle cx="200" cy="80" r="10" fill="url(#planetGradient2)" stroke="white" stroke-width="1"/>
    <ellipse cx="200" cy="80" rx="10" ry="3" fill="none" stroke="rgba(255,255,255,0.6)" stroke-width="2"/>

    <!-- Planet 3 -->
    <circle cx="150" cy="40" r="8" fill="url(#planetGradient3)" stroke="white" stroke-width="1"/>
    <line x1="142" y1="32" x2="158" y2="48" stroke="rgba(255,255,255,0.6)" stroke-width="2"/>
    <line x1="158" y1="32" x2="142" y2="48" stroke="rgba(255,255,255,0.6)" stroke-width="2"/>
  </g>

  <!-- Juggling motion trails -->
  <g stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none">
    <path d="M100,100 C130,70 170,70 200,80" />
    <path d="M200,80 C190,50 160,20 150,40" />
    <path d="M150,40 C130,60 110,120 100,100" />
  </g>
  
  <!-- Additional cosmic elements -->
  <circle cx="250" cy="50" r="3" fill="white" />
  <circle cx="50" cy="250" r="2" fill="white" />
  <circle cx="260" cy="220" r="2.5" fill="white" />
  <circle cx="30" cy="30" r="2" fill="white" />
  
  <!-- Comet -->
  <path d="M60,150 L80,145" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
  <ellipse cx="60" cy="150" rx="2" ry="2.5" fill="white"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <style>
    .star {
      filter: url(#starFilter);
    }
    .planet {
      filter: url(#planetFilter);
    }
  </style>
  <defs>
    <radialGradient id="spaceGradient">
      <stop offset="0%" stop-color="#000"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <filter id="starFilter">
      <feGaussianBlur stdDeviation="1"/>
    </filter>
    <filter id="planetFilter">
      <feGaussianBlur stdDeviation="2"/>
      <feDropShadow dx="0" dy="2" stdDeviation="3"/>
    </filter>
    <pattern id="sparkles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGradient)"/>
  <!-- Stars -->
  <g transform="scale(0.5)">
    <circle cx="50" cy="50" r="1" class="star" fill="white"/>
    <circle cx="150" cy="100" r="1.5" class="star" fill="white"/>
    <circle cx="250" cy="75" r="2" class="star" fill="white"/>
    <circle cx="350" cy="200" r="1.8" class="star" fill="white"/>
  </g>
  <!-- Planets -->
  <g transform="translate(150,100) rotate(45)">
    <circle cx="0" cy="0" r="20" class="planet" fill="radial-gradient(circle at 30% 30%, #66ccff, #3399ff)"/>
    <circle cx="80" cy="0" r="18" class="planet" fill="radial-gradient(circle at 30% 30%, #ff9966, #cc6633)"/>
    <circle cx="40" cy="60" r="16" class="planet" fill="radial-gradient(circle at 30% 30%, #99ff99, #66cc66)"/>
  </g>
  <!-- Cat -->
  <g transform="translate(150,250)">
    <path d="M0,0 Q-30,50 0,100 Q30,50 0,0" fill="#ffffff" stroke="#000"/>
    <circle cx="-20" cy="-20" r="10" fill="#666"/>
    <circle cx="20" cy="-20" r="10" fill="#666"/>
    <path d="M-10,-30 Q10,-30 20,-30" stroke="#ff6666" fill="none"/>
    <circle cx="0" cy="40" r="15" fill="#ffffff" stroke="#000"/>
    <path d="M-50,-50 Q0,-100 50,-50" stroke="#000" fill="none"/>
  </g>
  <!-- Juggling Arcs -->
  <path d="M100,150 Q150,50 200,150" stroke="#66ccff" fill="none" stroke-width="4"/>
  <path d="M120,130 Q170,80 220,130" stroke="#ff9966" fill="none" stroke-width="3"/>
  <!-- Sparkles -->
  <rect width="300" height="300" fill="url(#sparkles)" opacity="0.1"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image more clearly represents the prompt, with a distinguishable cat and planets being juggled.

    The use of different colors for the planets adds to the visual appeal and creativity.

    Player 2's image lacks clarity in depicting a cat and planets, making it less effective in conveying the idea.

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
30
Player 2
18
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
11
Player 2
11
Ellipses

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

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

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

Player 1
6
Player 2
5
Groups

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
18
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
6

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