Back

SVG Drawing Match #1144

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Neon fox juggling glowing planets under a starry sky"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="black" />
  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="white" />
  <circle cx="250" cy="40" r="1.5" fill="white" />
  <circle cx="200" cy="80" r="2.5" fill="white" />
  <circle cx="100" cy="200" r="1" fill="white" />
  <circle cx="150" cy="150" r="1.5" fill="white" />
  <circle cx="230" cy="180" r="1" fill="white" />
  <!-- Fox -->
  <path d="M150,210 Q130,180 110,210 Q130,220 150,210" fill="#FF4500" />
  <ellipse cx="150" cy="220" rx="40" ry="10" fill="#FF4500" />
  <path d="M150,160 Q140,200 130,210 Q120,200 110,180 Q120,160 150,160" fill="#FF8C00" />
  <circle cx="150" cy="150" r="10" fill="white" />
  <circle cx="148" cy="148" r="3" fill="black" />
  <!-- Neon Glow -->
  <filter id="neon">
    <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
    <feMerge>
      <feMergeNode in="coloredBlur"/>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>
  <path d="M150,160 Q130,180 110,190 Q100,180 110,160 Q120,170 150,160" fill="none" stroke="#FF4500" stroke-width="3" filter="url(#neon)" />
  <!-- Planets -->
  <circle cx="90" cy="100" r="15" fill="none" stroke="#00FFFF" stroke-width="2" filter="url(#neon)" />
  <circle cx="210" cy="100" r="12" fill="none" stroke="#FF69B4" stroke-width="2" filter="url(#neon)" />
  <circle cx="150" cy="60" r="10" fill="none" stroke="#ADFF2F" stroke-width="2" filter="url(#neon)" />
  <!-- Planetary Trails -->
  <path d="M90,100 C110,80 190,80 210,100" fill="none" stroke="#AAAAFF" stroke-width="1" stroke-dasharray="3,3" />
  <path d="M90,100 L150,60" fill="none" stroke="#FFA500" stroke-width="1" stroke-dasharray="2,4" />
  <path d="M210,100 L150,60" fill="none" stroke="#32CD32" stroke-width="1" stroke-dasharray="2,4" />
  <!-- Additional Glow Effects -->
  <circle cx="90" cy="100" r="20" fill="none" stroke="#00FFFF" stroke-opacity="0.3" stroke-width="5" />
  <circle cx="210" cy="100" r="17" fill="none" stroke="#FF69B4" stroke-opacity="0.3" stroke-width="5" />
  <circle cx="150" cy="60" r="15" fill="none" stroke="#ADFF2F" stroke-opacity="0.3" stroke-width="5" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#212121" />
  <g>
    <circle cx="50" cy="50" r="2" fill="#ffffff" />
    <circle cx="150" cy="75" r="3" fill="#ffffff" />
    <circle cx="250" cy="50" r="2" fill="#ffffff" />
    <circle cx="75" cy="150" r="3" fill="#ffffff" />
    <circle cx="225" cy="175" r="2" fill="#ffffff" />
    <circle cx="50" cy="250" r="2" fill="#ffffff" />
    <circle cx="150" cy="225" r="3" fill="#ffffff" />
    <circle cx="250" cy="250" r="2" fill="#ffffff" />
  </g>

  <!-- Glowing Planets -->
  <g>
    <circle cx="75" cy="100" r="20" fill="url(#grad-1)" />
    <circle cx="150" cy="150" r="30" fill="url(#grad-2)" />
    <circle cx="225" cy="200" r="20" fill="url(#grad-3)" />
  </g>

  <!-- Neon Fox -->
  <g>
    <path d="M 100 200 L 120 220 L 140 200 Z" fill="#ff69b4" stroke="#ffffff" stroke-width="2" />
    <path d="M 120 220 L 120 250 L 140 230 Z" fill="#ff69b4" stroke="#ffffff" stroke-width="2" />
    <path d="M 140 200 L 160 220 L 180 200 Z" fill="#ff69b4" stroke="#ffffff" stroke-width="2" />
    <path d="M 160 220 L 160 250 L 180 230 Z" fill="#ff69b4" stroke="#ffffff" stroke-width="2" />
    <circle cx="140" cy="230" r="10" fill="#ffffff" />
    <circle cx="160" cy="230" r="10" fill="#ffffff" />
  </g>

  <!-- Juggling Motion -->
  <g>
    <path d="M 120 220 L 140 200 L 160 220 Z" stroke="#ffffff" stroke-width="2" stroke-dasharray="10 5" />
    <path d="M 140 200 L 160 220 L 180 200 Z" stroke="#ffffff" stroke-width="2" stroke-dasharray="10 5" />
  </g>

  <!-- Gradients -->
  <defs>
    <linearGradient id="grad-1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff99cc" />
      <stop offset="100%" stop-color="#ff66b3" />
    </linearGradient>
    <linearGradient id="grad-2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ccff99" />
      <stop offset="100%" stop-color="#99ff66" />
    </linearGradient>
    <linearGradient id="grad-3" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#66ccff" />
      <stop offset="100%" stop-color="#33ccff" />
    </linearGradient>
  </defs>
</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 effectively captures the idea of a 'neon fox juggling glowing planets under a starry sky' with a clear depiction of a fox-like shape and distinct glowing planets.

    The use of bright colors and dotted lines adds a dynamic sense of motion, enhancing the visual appeal.

    Player 2's image, while colorful, lacks clarity in representing a fox and the juggling theme, making Player 1's more aligned with the prompt.

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
22
Player 2
20
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
14
Player 2
13
Ellipses

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
9

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
17
Player 2
24
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
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