Back

SVG Drawing Match #1713

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A mythical creature juggling planets under a neon night sky"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Neon Night Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#neonSky)"/>
  <linearGradient id="neonSky" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#3498db" stop-opacity="1"/>
    <stop offset="0.5" stop-color="#f1c40f" stop-opacity="0.8"/>
    <stop offset="1" stop-color="#9b59b6" stop-opacity="0.6"/>
  </linearGradient>

  <!-- Mytical Creature -->
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="40" fill="#fff" filter="url(#glow)"/>
    <path d="M -20 -30 L 20 -30 L 20 30 L -20 30 Z" fill="#fff" filter="url(#glow)"/>
    <path d="M -10 -20 L 10 -20 L 10 20 L -10 20 Z" fill="#fff" filter="url(#glow)"/>
    <circle cx="0" cy="-40" r="10" fill="#fff" filter="url(#glow)"/>
    <circle cx="0" cy="40" r="10" fill="#fff" filter="url(#glow)"/>
    <filter id="glow">
      <feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur"/>
      <feComponentTransfer in="blur" result="glow">
        <feFuncA type="linear" slope="0.5"/>
      </feComponentTransfer>
      <feComposite in="SourceGraphic" in2="glow" operator="arithmetic" k2="0.5" k3="0.5"/>
    </filter>
  </g>

  <!-- Planets -->
  <g transform="translate(150, 150)">
    <g transform="rotate(30)">
      <circle cx="-80" cy="0" r="15" fill="#fff" filter="url(#planetGlow)"/>
      <circle cx="-80" cy="0" r="5" fill="#3498db"/>
    </g>
    <g transform="rotate(90)">
      <circle cx="0" cy="-80" r="20" fill="#fff" filter="url(#planetGlow)"/>
      <circle cx="0" cy="-80" r="10" fill="#f1c40f"/>
    </g>
    <g transform="rotate(150)">
      <circle cx="80" cy="0" r="12" fill="#fff" filter="url(#planetGlow)"/>
      <circle cx="80" cy="0" r="6" fill="#9b59b6"/>
    </g>
    <filter id="planetGlow">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur"/>
      <feComponentTransfer in="blur" result="glow">
        <feFuncA type="linear" slope="0.8"/>
      </feComponentTransfer>
      <feComposite in="SourceGraphic" in2="glow" operator="arithmetic" k2="0.5" k3="0.5"/>
    </filter>
  </g>

  <!-- Juggling Lines -->
  <path d="M 120 150 L 150 120 L 180 150" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
  <path d="M 180 150 L 150 180 L 120 150" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
  <path d="M 150 120 L 150 180" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Neon night sky background -->
  <rect x="0" y="0" width="300" height="300" fill="#000" />
  <circle cx="150" cy="150" r="140" fill="#0ff" />
  
  <!-- Stars -->
  <circle cx="20" cy="40" r="1" fill="#fff" />
  <circle cx="250" cy="120" r="1" fill="#fff" />
  <circle cx="80" cy="200" r="1" fill="#fff" />
  <circle cx="200" cy="250" r="1" fill="#fff" />
  
  <!-- Planets -->
  <circle cx="80" cy="60" r="15" fill="#800080" />
  <circle cx="200" cy="120" r="20" fill="#ff00ff" />
  <circle cx="130" cy="220" r="25" fill="#ff69b4" />
  
  <!-- Mythical creature juggling planets -->
  <path d="M100 150 h-20 l20 -50 Z" fill="#ffa500" />
  <path d="M200 150 h20 l-20 -50 Z" fill="#ffa500" />
  <circle cx="150" cy="100" r="10" fill="#ffa500" />
  
  <!-- Eyes of the creature -->
  <circle cx="140" cy="90" r="2" fill="#fff" />
  <circle cx="160" cy="90" r="2" fill="#fff" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's submission better captures the theme with vibrant colors and a clear depiction of celestial bodies against a neon night sky.

    The composition suggests a mythical creature, adding to the creativity and adherence to the prompt.

    While Player 1 uses interesting gradients, the central figure is less defined, making the theme less apparent.

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
15
Player 2
14
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
9
Player 2
11
Ellipses

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

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

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

Player 1
5
Player 2
2
Groups

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

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
5
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
18
Player 2
8
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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