Back

SVG Drawing Match #530

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A fox in a spacesuit, juggling planets in a starry cosmic circus ring"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="starfield" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#0B0B2A"/>
      <stop offset="100%" stop-color="#000012"/>
    </radialGradient>
    <radialGradient id="planet1" cx="40%" cy="40%">
      <stop offset="0%" stop-color="#FF6B6B"/>
      <stop offset="100%" stop-color="#FF1717"/>
    </radialGradient>
    <radialGradient id="planet2" cx="40%" cy="40%">
      <stop offset="0%" stop-color="#4FACFE"/>
      <stop offset="100%" stop-color="#00F2FE"/>
    </radialGradient>
    <radialGradient id="planet3" cx="40%" cy="40%">
      <stop offset="0%" stop-color="#FFD26F"/>
      <stop offset="100%" stop-color="#FFB000"/>
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <circle cx="150" cy="150" r="150" fill="url(#starfield)"/>
  
  <!-- Stars -->
  <g fill="white">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="80" cy="30" r="1.5"/>
    <circle cx="200" cy="40" r="1"/>
    <circle cx="250" cy="70" r="1.2"/>
    <circle cx="40" cy="200" r="1"/>
    <circle cx="220" cy="180" r="1.5"/>
    <circle cx="180" cy="250" r="1"/>
    <circle cx="70" cy="150" r="1.2"/>
  </g>
  
  <!-- Cosmic Ring -->
  <ellipse cx="150" cy="150" rx="120" ry="40" 
           fill="none" stroke="#B794F4" stroke-width="4"
           transform="rotate(-15 150 150)"/>
  
  <!-- Fox in Spacesuit -->
  <g transform="translate(150,150)">
    <!-- Spacesuit -->
    <path d="M-20,-10 Q-25,-40 0,-45 Q25,-40 20,-10 Q25,20 0,30 Q-25,20 -20,-10"
          fill="#C5C5C5" stroke="#888" stroke-width="2"/>
    <!-- Helmet -->
    <circle cx="0" cy="-25" r="20" fill="#AADDFF" stroke="#888" stroke-width="2"/>
    <!-- Fox Face -->
    <path d="M-10,-30 L-5,-20 L0,-30 L5,-20 L10,-30"
          fill="none" stroke="#FF7744" stroke-width="2"/>
    <circle cx="-7" cy="-25" r="2" fill="#000"/>
    <circle cx="7" cy="-25" r="2" fill="#000"/>
  </g>
  
  <!-- Juggling Planets -->
  <g>
    <circle cx="100" cy="100" r="15" fill="url(#planet1)">
      <animate attributeName="cx" values="100;120;100" dur="2s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="150" cy="70" r="20" fill="url(#planet2)">
      <animate attributeName="cx" values="150;170;150" dur="2s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="70;90;70" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="100" r="17" fill="url(#planet3)">
      <animate attributeName="cx" values="200;180;200" dur="2s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <!-- Cosmic Ring Sparkles -->
  <g fill="#FFF" opacity="0.8">
    <circle cx="210" cy="140" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="90" cy="140" r="2">
      <animate attributeName="opacity" values="1;0;1" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="150" cy="170" r="2">
      <animate attributeName="opacity" values="0.5;1;0.5" dur="1.5s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with stars -->
  <defs>
    <radialGradient id="cosmicGradient" cx="50%" cy="50%" r="100%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#000428;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#004e92;stop-opacity:1" />
    </radialGradient>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="#fff" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#cosmicGradient)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.3" />

  <!-- Fox in spacesuit -->
  <g>
    <circle cx="150" cy="180" r="60" fill="white" stroke="#da70d6" stroke-width="4" />
    <circle cx="150" cy="180" r="55" fill="#ffdead" />
    <!-- Fox's face -->
    <ellipse cx="150" cy="160" rx="20" ry="16" fill="orange" />
    <ellipse cx="145" cy="160" rx="3" ry="4" fill="white" />
    <ellipse cx="155" cy="160" rx="3" ry="4" fill="white" />
    <path d="M145,165 Q150,172 155,165" fill="white" />
    <!-- Fox's ears -->
    <polygon points="135,145 140,130 145,145" fill="orange" />
    <polygon points="155,145 160,130 165,145" fill="orange" />
  </g>

  <!-- Planets being juggled -->
  <g>
    <circle cx="100" cy="100" r="10" fill="url(#cosmicGradient)" stroke="#b0e0e6" stroke-width="2" />
    <circle cx="200" cy="90" r="15" fill="url(#cosmicGradient)" stroke="#ff6347" stroke-width="2" />
    <circle cx="160" cy="50" r="8" fill="url(#cosmicGradient)" stroke="#98fb98" stroke-width="2" />
  </g>

  <!-- Cosmic Circus Ring -->
  <ellipse cx="150" cy="180" rx="100" ry="20" fill="none" stroke="yellow" stroke-width="3" stroke-dasharray="5,5" />
  <g transform="rotate(-45 150 180)">
    <ellipse cx="150" cy="180" rx="100" ry="20" fill="none" stroke="yellow" stroke-width="3" stroke-dasharray="5,5" opacity="0.5" />
  </g>
  <g transform="rotate(45 150 180)">
    <ellipse cx="150" cy="180" rx="100" ry="20" fill="none" stroke="yellow" stroke-width="3" stroke-dasharray="5,5" opacity="0.5" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image more effectively captures the whimsical and cosmic theme of a fox in a spacesuit juggling planets.

    The use of vibrant colors, representation of a fox's face, and clear depiction of a space environment with dotted patterns create a lively and imaginative scene.

    In contrast, Player 1's image is more minimalistic and lacks clear representation of a fox or a circus element.

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
17
Rectangles

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

Player 1
Player 2
2
Circles

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

Player 1
18
Player 2
6
Ellipses

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

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

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

Player 1
4
Player 2
4

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
9

Interactivity Metrics

Animations

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

Player 1
9
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
2

Complexity Metrics

Path Commands

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

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