Back

SVG Drawing Match #848

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flying elephant juggling planets in the night sky"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Night sky gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#081c24"/>
    </linearGradient>
    <!-- Elephant gradient -->
    <radialGradient id="elephantGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#a9a9a9"/>
      <stop offset="100%" stop-color="#5a5a5a"/>
    </radialGradient>
    <!-- Wing gradient -->
    <linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#f0e68c"/>
      <stop offset="100%" stop-color="#d2b48c"/>
    </linearGradient>
    <!-- Planet gradient 1 -->
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6b81"/>
      <stop offset="100%" stop-color="#c44569"/>
    </radialGradient>
    <!-- Planet gradient 2 -->
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#6bc1ff"/>
      <stop offset="100%" stop-color="#3c91e6"/>
    </radialGradient>
    <!-- Planet gradient 3 -->
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#a3de83"/>
      <stop offset="100%" stop-color="#4caf50"/>
    </radialGradient>
    <!-- Star Pattern -->
    <pattern id="stars" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="1" cy="1" r="1" fill="white"/>
      <circle cx="7" cy="5" r="0.5" fill="white" opacity="0.8"/>
    </pattern>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#stars)" opacity="0.3"/>
  
  <!-- Elephant Body -->
  <g id="elephant">
    <!-- Elephant trunk and body main shape -->
    <path d="M90,160 Q70,130 90,100 Q110,80 140,80 Q160,80 180,100 Q200,130 180,160 Q160,200 120,200 Q100,200 90,160" fill="url(#elephantGradient)" stroke="#444" stroke-width="1"/>
    <!-- Elephant head -->
    <circle cx="140" cy="90" r="15" fill="url(#elephantGradient)" stroke="#444" stroke-width="1"/>
    <!-- Elephant eye -->
    <circle cx="144" cy="87" r="2" fill="black"/>
    <!-- Elephant ear -->
    <path d="M125,80 Q110,70 110,90 Q110,110 125,100" fill="url(#elephantGradient)" stroke="#444" stroke-width="1"/>
    <!-- Elephant trunk -->
    <path d="M140,105 Q138,115 145,125 Q150,135 143,145" fill="none" stroke="#444" stroke-width="3" stroke-linecap="round"/>
    <!-- Elephant wing on the back -->
    <path d="M120,120 Q80,100 60,130 Q80,150 120,140" fill="url(#wingGradient)" opacity="0.8" stroke="#665" stroke-width="1"/>
    <!-- Elephant legs (implied, slightly visible at bottom) -->
    <ellipse cx="115" cy="195" rx="10" ry="5" fill="url(#elephantGradient)" stroke="#444" stroke-width="1"/>
    <ellipse cx="135" cy="195" rx="10" ry="5" fill="url(#elephantGradient)" stroke="#444" stroke-width="1"/>
  </g>
  
  <!-- Planets being juggled by the elephant -->
  <g id="planets">
    <!-- Planet 1 -->
    <circle cx="60" cy="50" r="12" fill="url(#planet1)" stroke="#a83255" stroke-width="1"/>
    <!-- Ring for Planet 1 -->
    <ellipse cx="60" cy="50" rx="16" ry="4" fill="none" stroke="#a83255" stroke-width="1"/>
    
    <!-- Planet 2 -->
    <circle cx="210" cy="40" r="10" fill="url(#planet2)" stroke="#357bb1" stroke-width="1"/>
    <!-- Ring for Planet 2 -->
    <ellipse cx="210" cy="40" rx="14" ry="3" fill="none" stroke="#357bb1" stroke-width="1"/>
    
    <!-- Planet 3 -->
    <circle cx="150" cy="20" r="8" fill="url(#planet3)" stroke="#388e3c" stroke-width="1"/>
    <!-- Ring for Planet 3 -->
    <ellipse cx="150" cy="20" rx="12" ry="2" fill="none" stroke="#388e3c" stroke-width="1"/>
  </g>
  
  <!-- Juggling motion lines (to show paths) -->
  <g stroke="white" stroke-dasharray="2,2" opacity="0.5">
    <path d="M140,105 Q100,70 60,50" fill="none"/>
    <path d="M140,105 Q170,60 210,40" fill="none"/>
    <path d="M140,105 Q140,20 150,20" fill="none"/>
  </g>
  
  <!-- Additional stars -->
  <g fill="white" opacity="0.7">
    <circle cx="250" cy="80" r="1.2"/>
    <circle cx="30" cy="220" r="0.8"/>
    <circle cx="270" cy="260" r="1"/>
    <circle cx="50" cy="30" r="0.6"/>
    <circle cx="200" cy="250" r="1"/>
  </g>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#0B0B3B"/>
      <stop offset="100%" stop-color="#000033"/>
    </radialGradient>
    <radialGradient id="planet1" cx="30%" cy="30%">
      <stop offset="0%" stop-color="#FF6B6B"/>
      <stop offset="100%" stop-color="#FF1744"/>
    </radialGradient>
    <radialGradient id="planet2" cx="40%" cy="40%">
      <stop offset="0%" stop-color="#4FC3F7"/>
      <stop offset="100%" stop-color="#0288D1"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%">
      <stop offset="0%" stop-color="#FFD54F"/>
      <stop offset="100%" stop-color="#FFA000"/>
    </radialGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)"/>
  
  <!-- Stars -->
  <g fill="white">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="100" cy="30" r="1.5"/>
    <circle cx="200" cy="70" r="1"/>
    <circle cx="250" cy="40" r="2"/>
    <circle cx="80" cy="180" r="1.5"/>
    <circle cx="280" cy="220" r="1"/>
    <circle cx="30" cy="250" r="1.5"/>
    <circle cx="150" cy="40" r="1"/>
  </g>

  <!-- Elephant -->
  <g transform="translate(150,150)">
    <path d="M-40,-20 C-30,-40 30,-40 40,-20 Q50,0 40,20 C30,40 -30,40 -40,20 Q-50,0 -40,-20" 
          fill="#9E9E9E" stroke="#757575" stroke-width="2"/>
    <ellipse cx="-20" cy="0" rx="5" ry="8" fill="#757575"/>
    <ellipse cx="20" cy="0" rx="5" ry="8" fill="#757575"/>
    <path d="M0,0 Q20,-10 40,-5" fill="none" stroke="#757575" stroke-width="4"/>
    <path d="M-10,10 Q0,15 10,10" fill="none" stroke="#757575" stroke-width="2"/>
    <!-- Wings -->
    <path d="M-40,0 Q-60,-30 -40,-40 Q-20,-30 -40,0" fill="#BDBDBD" stroke="#757575"/>
    <path d="M40,0 Q60,-30 40,-40 Q20,-30 40,0" fill="#BDBDBD" stroke="#757575"/>
  </g>

  <!-- Juggling Planets -->
  <g>
    <circle cx="100" cy="100" r="20" fill="url(#planet1)">
      <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="150" cy="70" r="25" fill="url(#planet2)">
      <animate attributeName="cy" values="70;90;70" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="100" r="15" fill="url(#planet3)">
      <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Planet Rings -->
  <g stroke="#FFD700" stroke-width="2" fill="none">
    <ellipse cx="150" cy="70" rx="35" ry="10">
      <animate attributeName="cy" values="70;90;70" dur="2s" repeatCount="indefinite"/>
    </ellipse>
  </g>

  <!-- Stardust Trail -->
  <path d="M80,120 Q150,150 220,120" stroke="#FFD700" stroke-width="1" fill="none" opacity="0.5">
    <animate attributeName="d" values="M80,120 Q150,150 220,120;M80,140 Q150,170 220,140;M80,120 Q150,150 220,120" dur="2s" repeatCount="indefinite"/>
  </path>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission effectively captures the whimsical concept of a flying elephant juggling planets.

    The image adheres closely to the prompt with a clear depiction of an elephant with wings and planets.

    The use of color and the detailed illustration of the night sky add to the visual appeal, making it more engaging and imaginative compared to Player 2's interpretation.

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
26
Player 2
21
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
12
Player 2
11
Ellipses

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

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

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

Player 1
7
Player 2
6
Groups

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
6
Player 2
4
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
5
Player 2
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
13

Interactivity Metrics

Animations

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

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