Back

SVG Drawing Match #1790

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe juggling planets under the ocean"

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="water" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#0099ff" stop-opacity="0.2"/>
      <stop offset="100%" stop-color="#003366" stop-opacity="0.8"/>
    </radialGradient>
    <pattern id="bubbles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="3" fill="rgba(255,255,255,0.3)"/>
    </pattern>
  </defs>

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

  <!-- Giraffe body -->
  <path d="M120,220 Q130,180 140,160 Q150,140 160,100 Q165,80 170,60" 
        stroke="#DAA520" stroke-width="20" fill="none"/>
  <path d="M120,220 Q110,200 105,180" stroke="#DAA520" stroke-width="15" fill="none"/>
  <path d="M120,220 Q130,200 135,180" stroke="#DAA520" stroke-width="15" fill="none"/>

  <!-- Giraffe spots -->
  <g fill="#8B4513">
    <circle cx="140" cy="160" r="8"/>
    <circle cx="160" cy="120" r="8"/>
    <circle cx="165" cy="80" r="8"/>
  </g>

  <!-- Giraffe head -->
  <ellipse cx="170" cy="50" rx="15" ry="25" fill="#DAA520"/>
  <circle cx="175" cy="45" r="3" fill="black"/>

  <!-- Planets -->
  <g id="planets">
    <circle cx="100" cy="100" r="20" fill="#FF6B6B"/>
    <circle cx="200" cy="120" r="25" fill="#4ECDC4"/>
    <circle cx="150" cy="80" r="15" fill="#FFD93D"/>
    <path d="M85,90 A20,20 0 1,1 115,110" fill="none" stroke="white" stroke-width="2"/>
    <ellipse cx="200" cy="120" rx="30" ry="5" fill="rgba(0,0,0,0.2)"/>
  </g>

  <!-- Seaweed -->
  <path d="M20,300 Q30,250 20,200 Q10,150 20,100" 
        stroke="#2E8B57" stroke-width="5" fill="none"/>
  <path d="M280,300 Q270,250 280,200 Q290,150 280,100" 
        stroke="#2E8B57" stroke-width="5" fill="none"/>

  <!-- Floating bubbles -->
  <g fill="rgba(255,255,255,0.5)">
    <circle cx="50" cy="150" r="5">
      <animate attributeName="cy" from="150" to="0" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="200" r="7">
      <animate attributeName="cy" from="200" to="50" dur="4s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Animation for juggling planets -->
  <animateTransform 
    xlink:href="#planets"
    attributeName="transform"
    type="rotate"
    from="0 150 150"
    to="360 150 150"
    dur="10s"
    repeatCount="indefinite"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="oceanGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#3498db" />
      <stop offset="100%" stop-color="#2ecc71" />
    </linearGradient>
    <radialGradient id="planetGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#9b59b6" />
      <stop offset="100%" stop-color="#e67e73" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#oceanGradient)" rx="20" />
  
  <!-- Seaweed -->
  <path d="M 100 250 C 100 190 140 180 110 130" stroke="#2ecc71" stroke-width="3" fill="none" />
  <path d="M 140 230 C 140 170 180 160 150 110" stroke="#2ecc71" stroke-width="3" fill="none" />
  <path d="M 180 210 C 180 150 220 140 190 90" stroke="#2ecc71" stroke-width="3" fill="none" />
  
  <!-- Giraffe -->
  <path d="M 150 180 C 160 140 140 100 120 60" stroke="#9b59b6" stroke-width="3" fill="none" />
  <circle cx="140" cy="50" r="10" fill="#f1c40f" />
  <rect x="130" y="35" width="20" height="15" fill="#f1c40f" rx="5" />
  
  <!-- Planets -->
  <circle cx="70" cy="100" r="15" fill="url(#planetGradient)" />
  <circle cx="230" cy="150" r="25" fill="url(#planetGradient)" />
  <circle cx="200" cy="70" r="20" fill="url(#planetGradient)" />
  
  <!-- Juggling -->
  <path d="M 140 50 C 150 70 160 80 150 110" stroke="#9b59b6" stroke-width="2" fill="none" />
  <path d="M 140 50 C 130 70 120 80 130 110" stroke="#9b59b6" stroke-width="2" fill="none" />
  <path d="M 150 180 C 160 200 170 210 180 230" stroke="#9b59b6" stroke-width="2" fill="none" />
  
  <!-- Bubbles -->
  <circle cx="50" cy="250" r="10" fill="#ffffff" opacity="0.5" />
  <circle cx="250" cy="50" r="10" fill="#ffffff" opacity="0.5" />
  <circle cx="100" cy="150" r="10" fill="#ffffff" opacity="0.5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission effectively captures the whimsical theme of a giraffe juggling planets under the ocean.

    The use of vibrant colors and abstract forms suggests an underwater setting and the giraffe's elongated form, while still maintaining a sense of whimsy and creativity.

    Player 1's image fails to load, which prevents any evaluation of adherence to the prompt or technical quality.

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
20
Player 2
16
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
10
Player 2
7
Ellipses

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
6

Interactivity Metrics

Animations

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

Player 1
3
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
16
Player 2
14
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
2
Player 2
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