Back

SVG Drawing Match #1895

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A spaceship stuck in a giant jelly donut floating in space"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#1A1D23" />
      <stop offset="50%" stop-color="#2E4053" />
      <stop offset="100%" stop-color="#1A1D23" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />

  <!-- Donut -->
  <defs>
    <radialGradient id="donutGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FF69B4" />
      <stop offset="100%" stop-color="#FFC67D" />
    </radialGradient>
  </defs>
  <circle cx="150" cy="150" r="120" fill="url(#donutGradient)" />
  <circle cx="150" cy="150" r="80" fill="#FFFFFF" />
  <path d="M 150 70 A 80 80 0 1 1 150 230 A 80 80 0 1 1 150 70" fill="#FF69B4" />

  <!-- Spaceship -->
  <defs>
    <linearGradient id="spaceshipGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4C5154" />
      <stop offset="50%" stop-color="#959FA5" />
      <stop offset="100%" stop-color="#4C5154" />
    </linearGradient>
  </defs>
  <path d="M 120 100 L 180 100 L 200 150 L 100 150 Z" fill="url(#spaceshipGradient)" />
  <circle cx="150" cy="120" r="10" fill="#FFFFFF" />
  <path d="M 120 120 L 180 120" stroke="#FFFFFF" stroke-width="2" />

  <!-- Jelly Filling -->
  <defs>
    <pattern id="jellyPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="5" fill="#FFC67D" />
    </pattern>
  </defs>
  <path d="M 100 150 A 50 50 0 1 1 200 150 A 50 50 0 1 1 100 150" fill="url(#jellyPattern)" />

  <!-- Stars -->
  <circle cx="50" cy="50" r="5" fill="#FFFFFF" />
  <circle cx="250" cy="50" r="5" fill="#FFFFFF" />
  <circle cx="150" cy="250" r="5" fill="#FFFFFF" />
</svg>
SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #0b0c10; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #1f2833; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="donutGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #ff9a9e; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #fad0c4; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="shipGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#cccccc; stop-opacity:1" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="1" cy="1" r="0.5" fill="#ffffff" />
    </pattern>
  </defs>
  <!-- Background Space -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.3"/>
  <!-- Jelly Donut -->
  <g filter="url(#glow)">
    <ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#donutGradient)" opacity="0.8"/>
    <ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#donutGradient)" opacity="0.4" transform="rotate(45 150 150)"/>
    <ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#donutGradient)" opacity="0.2" transform="rotate(90 150 150)"/>
  </g>
  <!-- Spaceship -->
  <g transform="translate(150, 120)" filter="url(#glow)">
    <!-- Body -->
    <path d="M0,-20 L10,10 L-10,10 Z" fill="url(#shipGradient)" stroke="#333" stroke-width="1"/>
    <!-- Wings -->
    <polygon points="-15,0 -30,10 -15,20" fill="#555" opacity="0.8"/>
    <polygon points="15,0 30,10 15,20" fill="#555" opacity="0.8"/>
    <!-- Windows -->
    <circle cx="0" cy="-5" r="3" fill="#00ffff"/>
    <circle cx="5" cy="5" r="2" fill="#00ffff"/>
    <circle cx="-5" cy="5" r="2" fill="#00ffff"/>
    <!-- Exhaust Flames -->
    <path d="M0,10 C-5,15 -5,20 0,25 C5,20 5,15 0,10" fill="orange" opacity="0.6"/>
  </g>
  <!-- Space Debris -->
  <circle cx="80" cy="80" r="2" fill="#ffffff" opacity="0.7"/>
  <circle cx="220" cy="60" r="1.5" fill="#ffffff" opacity="0.5"/>
  <circle cx="200" cy="200" r="2.5" fill="#ffffff" opacity="0.6"/>
  <circle cx="50" cy="250" r="1" fill="#ffffff" opacity="0.4"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image creatively integrates the spaceship into the jelly donut concept with a clear depiction of a triangular ship and a dynamic, glowing donut shape.

    The composition is balanced and visually appealing, capturing the essence of the prompt effectively.

    Player 1's submission, while colorful, lacks clarity in representing the spaceship and donut concept distinctly.

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

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

Player 1
1
Player 2
2
Circles

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

Player 1
7
Player 2
8
Ellipses

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

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

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
5

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
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
13
Player 2
7
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
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