Back

SVG Drawing Match #2693

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Alien juggling planets under a disco ball in space."

SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Background Gradient -->
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#2d2a4a"/>
      <stop offset="100%" stop-color="#000010"/>
    </radialGradient>
    <!-- Disco Ball Gradient -->
    <radialGradient id="discoBallGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </radialGradient>
    <!-- Planet Gradients -->
    <radialGradient id="planet1Grad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff8c00"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
    <radialGradient id="planet2Grad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#1e90ff"/>
      <stop offset="100%" stop-color="#00008b"/>
    </radialGradient>
    <radialGradient id="planet3Grad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#7fff00"/>
      <stop offset="100%" stop-color="#228b22"/>
    </radialGradient>
    <!-- ClipPath for Disco Ball Facets -->
    <clipPath id="discoClip">
      <circle cx="150" cy="50" r="10"/>
    </clipPath>
  </defs>

  <!-- Space Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGrad)"/>

  <!-- Stars scattered in space -->
  <circle cx="20" cy="30" r="1.2" fill="white"/>
  <circle cx="250" cy="50" r="1" fill="white"/>
  <circle cx="90" cy="10" r="1" fill="white"/>
  <circle cx="150" cy="5" r="1.5" fill="white"/>
  <circle cx="280" cy="80" r="1" fill="white"/>
  <circle cx="70" cy="250" r="1.4" fill="white"/>
  <circle cx="200" cy="220" r="1" fill="white"/>
  <circle cx="50" cy="200" r="1.2" fill="white"/>
  <circle cx="270" cy="270" r="1.3" fill="white"/>
  <circle cx="120" cy="160" r="1" fill="white"/>

  <!-- Disco Ball with Faceted Details -->
  <g clip-path="url(#discoClip)">
    <circle cx="150" cy="50" r="10" fill="url(#discoBallGrad)" stroke="silver" stroke-width="0.5"/>
    <rect x="138" y="42" width="3" height="3" fill="#bbb"/>
    <rect x="145" y="44" width="3" height="3" fill="#bbb"/>
    <rect x="152" y="40" width="3" height="3" fill="#bbb"/>
    <rect x="132" y="48" width="3" height="3" fill="#bbb"/>
    <rect x="140" y="52" width="3" height="3" fill="#bbb"/>
    <rect x="148" y="50" width="3" height="3" fill="#bbb"/>
    <rect x="155" y="54" width="3" height="3" fill="#bbb"/>
    <rect x="136" y="56" width="3" height="3" fill="#bbb"/>
    <rect x="144" y="58" width="3" height="3" fill="#bbb"/>
    <rect x="152" y="62" width="3" height="3" fill="#bbb"/>
  </g>

  <!-- Alien Figure -->
  <!-- Antennas -->
  <path d="M142,118 L135,105" stroke="limegreen" stroke-width="2" stroke-linecap="round"/>
  <circle cx="135" cy="105" r="2" fill="limegreen" stroke="black" stroke-width="0.5"/>
  <path d="M158,118 L165,105" stroke="limegreen" stroke-width="2" stroke-linecap="round"/>
  <circle cx="165" cy="105" r="2" fill="limegreen" stroke="black" stroke-width="0.5"/>
  <!-- Head -->
  <ellipse cx="150" cy="130" rx="12" ry="16" fill="limegreen" stroke="black" stroke-width="1"/>
  <!-- Eyes -->
  <circle cx="144" cy="125" r="3" fill="white"/>
  <circle cx="144" cy="125" r="1.5" fill="black"/>
  <circle cx="156" cy="125" r="3" fill="white"/>
  <circle cx="156" cy="125" r="1.5" fill="black"/>
  <!-- Mouth -->
  <path d="M142,138 Q150,143 158,138" stroke="black" stroke-width="1" fill="none"/>
  <!-- Body -->
  <ellipse cx="150" cy="155" rx="10" ry="14" fill="limegreen" stroke="black" stroke-width="1"/>
  <!-- Arms reaching upward -->
  <path d="M138,130 Q120,115 120,100" stroke="limegreen" stroke-width="3" fill="none" stroke-linecap="round"/>
  <path d="M162,130 Q180,115 180,100" stroke="limegreen" stroke-width="3" fill="none" stroke-linecap="round"/>
  <path d="M150,130 Q150,110 150,80" stroke="limegreen" stroke-width="3" fill="none" stroke-linecap="round"/>

  <!-- Juggled Planets -->
  <circle cx="120" cy="100" r="8" fill="url(#planet1Grad)" stroke="black" stroke-width="0.5"/>
  <circle cx="150" cy="80" r="10" fill="url(#planet2Grad)" stroke="black" stroke-width="0.5"/>
  <ellipse cx="150" cy="80" rx="14" ry="4" fill="none" stroke="gold" stroke-width="1"/>
  <circle cx="180" cy="100" r="8" fill="url(#planet3Grad)" stroke="black" stroke-width="0.5"/>
</svg>
SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
  <!-- Background Space Gradient -->
  <defs>
    <linearGradient id="spaceGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0d1b2a"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <!-- Disco Ball Reflection -->
    <radialGradient id="discoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.8"/>
      <stop offset="50%" stop-color="#00ffff" stop-opacity="0.5"/>
      <stop offset="100%" stop-color="#000000" stop-opacity="0"/>
    </radialGradient>
    <!-- Planet Gradients -->
    <linearGradient id="planet1Grad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#cc4b39"/>
    </linearGradient>
    <linearGradient id="planet2Grad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#fdd835"/>
      <stop offset="100%" stop-color="#fbc02d"/>
    </linearGradient>
    <linearGradient id="planet3Grad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#4caf50"/>
      <stop offset="100%" stop-color="#2e7d32"/>
    </linearGradient>
  </defs>

  <!-- Space Background -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />

  <!-- Disco Ball (Floating above) -->
  <circle cx="150" cy="80" r="50" fill="url(#discoGradient)" stroke="#ccc" stroke-width="3" opacity="0.8"/>
  <!-- Reflections on Disco Ball -->
  <circle cx="150" cy="80" r="15" fill="#fff" opacity="0.4"/>
  <circle cx="170" cy="60" r="8" fill="#fff" opacity="0.3"/>
  <circle cx="130" cy="100" r="10" fill="#fff" opacity="0.2"/>

  <!-- Alien Head (Stylized, with antennae) -->
  <g id="alien" transform="translate(150, 220)">
    <!-- Head -->
    <ellipse cx="0" cy="0" rx="20" ry="30" fill="#a1d2ff" stroke="#5588aa" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-7" cy="-5" r="3" fill="#000"/>
    <circle cx="7" cy="-5" r="3" fill="#000"/>
    <!-- Antennae -->
    <line x1="0" y1="-15" x2="-10" y2="-25" stroke="#5588aa" stroke-width="2"/>
    <circle cx="-10" cy="-25" r="2" fill="#ff00ff"/>
    <line x1="0" y1="-15" x2="10" y2="-25" stroke="#5588aa" stroke-width="2"/>
    <circle cx="10" cy="-25" r="2" fill="#ffff00"/>
  </g>

  <!-- Juggling Planets, orbiting around the alien's hands (assumed position) -->
  <!-- Planet 1 -->
  <circle cx="105" cy="175" r="12" fill="url(#planet1Grad)">
    <!-- Orbit Path -->
    <animate attributeName="cx" values="105;195;105" dur="8s" repeatCount="indefinite"/>
    <animate attributeName="cy" values="175;125;175" dur="8s" repeatCount="indefinite"/>
  </circle>
  <!-- Planet 2 -->
  <circle cx="195" cy="145" r="10" fill="url(#planet2Grad)">
    <animate attributeName="cx" values="195;105;195" dur="10s" repeatCount="indefinite"/>
    <animate attributeName="cy" values="145;195;145" dur="10s" repeatCount="indefinite"/>
  </circle>
  <!-- Planet 3 -->
  <circle cx="150" cy="195" r="8" fill="url(#planet3Grad)">
    <animate attributeName="cx" values="150;180;150" dur="6s" repeatCount="indefinite"/>
    <animate attributeName="cy" values="195;165;195" dur="6s" repeatCount="indefinite"/>
  </circle>

  <!-- Optional: Additional space elements like stars -->
  <g fill="#fff" opacity="0.6">
    <circle cx="50" cy="50" r="1.5"/>
    <circle cx="250" cy="80" r="1"/>
    <circle cx="80" cy="200" r="2"/>
    <circle cx="220" cy="220" r="1.8"/>
    <circle cx="100" cy="100" r="1"/>
    <circle cx="200" cy="60" r="1.3"/>
    <circle cx="170" cy="250" r="1.5"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 1

Judge's Analysis

    Player 1's image better adheres to the prompt by showing a clear depiction of an alien juggling planets under a disco ball in space.

    The composition is straightforward, with recognizable elements like the disco ball, planets, and alien.

    Player 2's submission, while visually appealing, is less clear in its representation of the prompt and lacks the same level of storytelling detail.

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
41
Player 2
22
Rectangles

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

Player 1
11
Player 2
1
Circles

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

Player 1
21
Player 2
18
Ellipses

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

Player 1
3
Player 2
1
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
Player 2
Paths

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

Player 1
6
Player 2
Groups

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
17

Interactivity Metrics

Animations

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

Player 1
Player 2
6
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
1

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