Back

SVG Drawing Match #1343

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Elon Musk as a cosmic DJ, mixing planets on a turntable of stars"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="stardust" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f5f7fa" />
      <stop offset="100%" stop-color="#b8c6db" />
    </radialGradient>
    <radialGradient id="sunshine" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffeb3b" />
      <stop offset="100%" stop-color="#f57f17" />
    </radialGradient>
    <linearGradient id="nebulas" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#9c27b0" />
      <stop offset="100%" stop-color="#3f51b5" />
    </linearGradient>
    <pattern id="starField" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="url(#stardust)" />
    </pattern>
  </defs>

  <!-- Background filled with stars -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starField)" />

  <!-- Cosmic DJ table -->
  <ellipse cx="150" cy="250" rx="120" ry="20" fill="url(#nebulas)" opacity="0.8"/>
  
  <!-- Star turntable -->
  <circle cx="150" cy="150" r="45" fill="url(#sunshine)" />
  <circle cx="150" cy="150" r="35" fill="#fff176" />
  <circle cx="150" cy="150" r="5" fill="#ffa000" />

  <!-- Planets as discs -->
  <circle cx="100" cy="150" r="12" fill="#03a9f4" />
  <circle cx="200" cy="150" r="16" fill="#4caf50" />

  <!-- Arm rotation line -->
  <line x1="150" y1="150" x2="120" y2="120" stroke="#ff5722" stroke-width="3"/>

  <!-- Elon Musk's stylized head -->
  <ellipse cx="150" cy="60" rx="30" ry="40" fill="#ffccbc" />
  <ellipse cx="140" cy="55" rx="5" ry="8" fill="#000" />
  <ellipse cx="160" cy="55" rx="5" ry="8" fill="#000" />
  <path d="M145 70 Q150 80 155 70" stroke="#000" stroke-width="2" fill="none" />

  <!-- Cosmic headphones -->
  <rect x="115" y="20" width="12" height="40" fill="#607d8b" />
  <rect x="173" y="20" width="12" height="40" fill="#607d8b" />
  <circle cx="110" cy="40" r="10" fill="#37474f" />
  <circle cx="190" cy="40" r="10" fill="#37474f" />

  <!-- Starlit lines around head for cosmic flair -->
  <path d="M50 70 Q100 20 150 60" stroke="url(#nebulas)" stroke-width="1" fill="none"/>
  <path d="M250 70 Q200 20 150 60" stroke="url(#nebulas)" stroke-width="1" fill="none"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background sky with stars -->
  <rect x="0" y="0" width="300" height="300" fill="#000022" />
  <circle cx="150" cy="150" r="140" fill="url(#skyGradient)" />
  <defs>
    <radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#002240" />
      <stop offset="100%" stop-color="#000022" />
    </radialGradient>
  </defs>
  
  <!-- Planets spinning on turntable -->
  <circle cx="150" cy="150" r="90" fill="url(#planetGradient1)">
    <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 150 150" to="360 150 150" dur="25s" repeatCount="indefinite" />
  </circle>
  <defs>
    <radialGradient id="planetGradient1" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#ffdb4d" />
      <stop offset="100%" stop-color="#ff9966" />
    </radialGradient>
  </defs>
  
  <circle cx="150" cy="150" r="70" fill="url(#planetGradient2)">
    <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 150 150" to="-360 150 150" dur="20s" repeatCount="indefinite" />
  </circle>
  <defs>
    <radialGradient id="planetGradient2" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#ff66cc" />
      <stop offset="100%" stop-color="#ff99cc" />
    </radialGradient>
  </defs>
  
  <!-- Turntable of stars -->
  <circle cx="150" cy="150" r="50" fill="#222" />
  <circle cx="150" cy="150" r="30" fill="#111" />
  
  <!-- Elon Musk character -->
  <circle cx="150" cy="100" r="20" fill="#0066ff" />
  <rect x="142" y="120" width="16" height="40" fill="#0066ff" />
  <path d="M134 120 L166 120 L150 90 Z" fill="#0066ff" />
</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 image better adheres to the prompt by depicting a recognizable figure with headphones, suggesting a DJ, and a turntable with planetary elements.

    The composition effectively conveys the idea of 'mixing planets on a turntable of stars' with a clear, engaging design.

    Player 2's image, while visually appealing, lacks the specific elements necessary to fully capture the cosmic DJ theme.

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
19
Player 2
9
Rectangles

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

Player 1
3
Player 2
2
Circles

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

Player 1
8
Player 2
6
Ellipses

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

Player 1
4
Player 2
Lines

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
9

Interactivity Metrics

Animations

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

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