Back

SVG Drawing Match #746

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat in a spacesuit juggling planets in zero gravity"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="#002244"/>
  
  <!-- Planets -->
  <circle cx="30" cy="30" r="15" fill="#ffcc00"/>
  <circle cx="100" cy="50" r="25" fill="#ff9900"/>
  <circle cx="200" cy="20" r="20" fill="#ff6699"/>
  
  <!-- Cat -->
  <g transform="translate(150,150)">
    <!-- Spacesuit -->
    <ellipse cx="0" cy="0" rx="50" ry="80" fill="#222222"/>
    <!-- Helmet -->
    <circle cx="0" cy="-70" r="25" fill="#333"/>
    <!-- Cat's Head -->
    <circle cx="0" cy="-85" r="18" fill="#ffcc66"/>
    <!-- Ears -->
    <polygon points="-10,-100 0,-130 10,-100" fill="#ffcc66"/>
    <!-- Eyes -->
    <circle cx="-8" cy="-90" r="3" fill="white"/>
    <circle cx="8" cy="-90" r="3" fill="white"/>
    <!-- Nose -->
    <circle cx="0" cy="-85" r="2" fill="#333"/>
    <!-- Mouth -->
    <path d="M -5,-80 Q 0,-70 5,-80" fill="none" stroke="#333" stroke-width="1"/>
  </g>
  
  <!-- Juggling -->
  <circle cx="170" cy="240" r="15" fill="#ffcc00"/>
  <circle cx="200" cy="260" r="18" fill="#ff6699"/>
  <circle cx="230" cy="250" r="20" fill="#ff9900"/>
  <circle cx="200" cy="220" r="10" fill="#ffcc00"/>
  
  <!-- Tail -->
  <path d="M 150,150 Q 130,200 100,250" fill="none" stroke="#ffcc66" stroke-width="8"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#space)" />
  
  <!-- Space background with stars -->
  <defs>
    <linearGradient id="space" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#1A0F3B;stop-opacity:1" />
      <stop offset="1" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    <!-- Starry texture -->
    <filter id="stars">
      <feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="3" />
    </filter>
  </defs>
  
  <!-- Juggling planets -->
  <g transform="translate(150,150)">
    <!-- Planet 1 - Earth-like -->
    <g transform="rotate(-60)">
      <circle cx="-100" cy="-50" r="30" fill="#3E8E41" stroke="#2D6A33" stroke-width="2">
        <animateTransform attributeName="transform" type="rotate" from="-60" to="-60" dur="4s" repeatCount="indefinite" />
      </circle>
      <circle cx="-100" cy="-50" r="25" fill="url(earth-gradient)" />
    </g>
    
    <!-- Planet 2 - Gas giant -->
    <g transform="rotate(60)">
      <circle cx="100" cy="-50" r="35" fill="#FF6B6B" stroke="#FF5252" stroke-width="2">
        <animateTransform attributeName="transform" type="rotate" from="60" to="-300" dur="5s" repeatCount="indefinite" />
      </circle>
      <circle cx="100" cy="-50" r="30" fill="url(gas-gradient)" />
    </g>
    
    <!-- Planet 3 - Ice planet -->
    <g transform="rotate(180)">
      <circle cx="0" cy="100" r="25" fill="#A1C4FD" stroke="#80B1D1" stroke-width="2">
        <animateTransform attributeName="transform" type="rotate" from="180" to="180" dur="3s" repeatCount="indefinite" />
      </circle>
      <circle cx="0" cy="100" r="20" fill="url(ice-gradient)" />
    </g>
    
    <!-- Space cat -->
    <g transform="translate(0,0)">
      <!-- Spacesuit -->
      <path d="M-50-100 L50-100 L40-60 L-40-60 L-50-100 Z" fill="#444" stroke="#666" stroke-width="2"/>
      <path d="M-30-80 L30-80 L25-50 L-25-50 L-30-80 Z" fill="#444" stroke="#666" stroke-width="2"/>
      <circle cx="0" cy="-70" r="15" fill="#FFD700" stroke="#FFB300" stroke-width="2"/>
      
      <!-- Cat face -->
      <circle cx="0" cy="-70" r="10" fill="#FFF" stroke="#666" stroke-width="1"/>
      <path d="M-5-65 L5-65 L3-60 L-3-60 Z" fill="#000"/>
      <path d="M-8-60 L8-60 L6-55 L-6-55 Z" fill="#000"/>
      <path d="M-4-58 L4-58 L0-55" stroke="#000" stroke-width="1"/>
      
      <!-- Whiskers -->
      <path d="M-15-70 L-25-65" stroke="#FFF" stroke-width="1"/>
      <path d="M15-70 L25-65" stroke="#FFF" stroke-width="1"/>
    </g>
    
    <!-- Orbital paths -->
    <path d="M0-150 C100-50 200-50 300-150" fill="none" stroke="#666" stroke-width="1" opacity="0.3"/>
    <path d="M0-150 C-100-50 -200-50 -300-150" fill="none" stroke="#666" stroke-width="1" opacity="0.3"/>
    
    <!-- Gradient definitions -->
    <defs>
      <radialGradient id="earth-gradient" cx="0" cy="0" r="1" fx="0" fy="0">
        <stop offset="0" style="stop-color:#3E8E41;stop-opacity:1" />
        <stop offset="1" style="stop-color:#2D6A33;stop-opacity:1" />
      </radialGradient>
      <radialGradient id="gas-gradient" cx="0" cy="0" r="1" fx="0" fy="0">
        <stop offset="0" style="stop-color:#FF6B6B;stop-opacity:1" />
        <stop offset="1" style="stop-color:#FF5252;stop-opacity:1" />
      </radialGradient>
      <radialGradient id="ice-gradient" cx="0" cy="0" r="1" fx="0" fy="0">
        <stop offset="0" style="stop-color:#A1C4FD;stop-opacity:1" />
        <stop offset="1" style="stop-color:#80B1D1;stop-opacity:1" />
      </radialGradient>
    </defs>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1's submission more clearly represents the prompt with a discernible figure resembling a cat in a spacesuit and the depiction of juggling planets.

    The use of color and composition effectively communicates the theme of zero gravity.

    Player 2's image, while creative, lacks clear elements that adhere to the prompt and doesn't visually convey the concept as effectively.

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
17
Player 2
18
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
12
Player 2
8
Ellipses

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

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

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

Player 1
2
Player 2
9
Groups

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

Player 1
1
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
12

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

Complexity Metrics

Path Commands

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

Player 1
4
Player 2
33
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
Player 2
5
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