Back

SVG Drawing Match #987

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat in a space helmet floating among neon geometric stars"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #5053f4; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #3a3d7d; stop-opacity: 1" />
    </radialGradient>
    <linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: #fc466b; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #3f5efb; stop-opacity: 1" />
    </linearGradient>
    <pattern id="starPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <polygon points="10,0 12,6 18,6 13,10 15,16 10,12 5,16 7,10 2,6 8,6" fill="url(#starGradient)" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="black" />
  <circle cx="150" cy="150" r="80" fill="url(#helmetGradient)" stroke="#ffffff" stroke-width="2" />
  <path d="M120 140 Q135 130, 150 140 T180 140" fill="#fff" stroke="#fff" stroke-width="1" />
  <ellipse cx="140" cy="130" rx="4" ry="6" fill="#fff" />
  <ellipse cx="160" cy="130" rx="4" ry="6" fill="#fff" />
  <path d="M135 165 Q150 155, 165 165" stroke="#fff" stroke-width="2" fill="none" />
  <polygon points="20,50 40,40 60,70 40,90" fill="url(#starGradient)" opacity="0.7" />
  <polygon points="250,70 230,90 210,50 230,30" fill="url(#starGradient)" opacity="0.7" />
  <polygon points="60,230 80,200 100,240 80,270" fill="url(#starGradient)" opacity="0.7" />
  <polygon points="260,230 240,210 220,250 240,270" fill="url(#starGradient)" opacity="0.7" />
  <rect x="0" y="0" width="100%" height="100%" fill="url(#starPattern)" opacity="0.1" />
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#000814" />
      <stop offset="100%" stop-color="#001d3d" />
    </radialGradient>
    <linearGradient id="helmetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#c0c0c0" stop-opacity="0.8"/>
    </linearGradient>
    <radialGradient id="catGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffb703" />
      <stop offset="100%" stop-color="#fb5607" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="patternGeo" patternUnits="userSpaceOnUse" width="20" height="20">
      <path d="M10 0 L12 7 H20 L13 11 L15 18 L10 14 L5 18 L7 11 L0 7 H8 Z" fill="#0ff" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Neon Geometric Stars -->
  <g filter="url(#glow)">
    <polygon points="50,30 55,40 65,40 58,50 62,60 50,54 38,60 42,50 35,40 45,40" fill="#ff006e" />
    <rect x="220" y="70" width="20" height="20" fill="url(#patternGeo)" />
    <polygon points="150,20 160,35 175,35 165,50 175,65 160,65 150,80 140,65 125,65 135,50 125,35 140,35" fill="#00f5d4" />
    <circle cx="270" cy="200" r="8" fill="#8338ec" />
    <polygon points="80,250 85,260 95,260 88,270 92,280 80,274 68,280 72,270 65,260 75,260" fill="#ff006e" />
  </g>
  
  <!-- Cat Body -->
  <g transform="translate(150, 160)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#catGradient)" />
    
    <!-- Head -->
    <circle cx="0" cy="-25" r="15" fill="url(#catGradient)" />
    
    <!-- Ears -->
    <polygon points="-10,-30 -15,-40 -5,-35" fill="url(#catGradient)" />
    <polygon points="10,-30 15,-40 5,-35" fill="url(#catGradient)" />
    
    <!-- Eyes -->
    <circle cx="-5,-27) r="2" fill="#000" />
    <circle cx="5,-27" r="2" fill="#000" />
    
    <!-- Space Helmet -->
    <circle cx="0" cy="-25" r="20" fill="url(#helmetGradient)" stroke="#ffffff" stroke-width="2" opacity="0.9"/>
    <path d="M-14,-25 a14,14 0 0,1 28,0" stroke="#ffffff" stroke-width="2" fill="none" opacity="0.7"/>
    <line x1="-20" y1="-25" x2="-30" y2="-20" stroke="#ffffff" stroke-width="2" />
    <line x1="20" y1="-25" x2="30" y2="-20" stroke="#ffffff" stroke-width="2" />
    
    <!-- Whiskers -->
    <path d="M-7,-25 h-10" stroke="#000" stroke-width="1" />
    <path d="M-7,-23 h-10" stroke="#000" stroke-width="1" />
    <path d="M-7,-27 h-10" stroke="#000" stroke-width="1" />
    <path d="M7,-25 h10" stroke="#000" stroke-width="1" />
    <path d="M7,-23 h10" stroke="#000" stroke-width="1" />
    <path d="M7,-27 h10" stroke="#000" stroke-width="1" />
  </g>
  
  <!-- Additional Light Effects -->
  <circle cx="100" cy="100" r="3" fill="#f72585" filter="url(#glow)" />
  <circle cx="200" cy="150" r="5" fill="#7209b7" filter="url(#glow)" />
  <circle cx="50" cy="220" r="4" fill="#4361ee" filter="url(#glow)" />
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's submission features a space helmet and geometric shapes that resemble stars, which fits the prompt of a cat in a space helmet among neon geometric stars.

    The use of gradient colors and a subtle starry background adds depth and visual appeal.

    Player 2's image is not viewable, giving Player 1 the advantage in this comparison.

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
12
Player 2
Rectangles

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

Player 1
2
Player 2
Circles

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

Player 1
1
Player 2
Ellipses

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

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

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

Player 1
2
Player 2
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2

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
Player 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
5
Player 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
3
Player 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