Back

SVG Drawing Match #585

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe juggling planets in a cosmic circus tent"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background and cosmic circus tent -->
  <defs>
    <radialGradient id="cosmicBg" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a0033" />
      <stop offset="50%" stop-color="#0c0020" />
      <stop offset="100%" stop-color="#000000" />
    </radialGradient>
    <linearGradient id="tentGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff2a6d" />
      <stop offset="50%" stop-color="#d1225b" />
      <stop offset="100%" stop-color="#8a1a41" />
    </linearGradient>
    <radialGradient id="spotPattern" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#e8c07d" />
      <stop offset="100%" stop-color="#ca9e4d" />
    </radialGradient>
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    <pattern id="stars" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" />
      <circle cx="25" cy="30" r="0.6" fill="white" />
      <circle cx="40" cy="15" r="1" fill="white" />
      <circle cx="15" cy="40" r="0.7" fill="white" />
      <circle cx="35" cy="45" r="0.5" fill="white" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#cosmicBg)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)" opacity="0.8" />
  
  <!-- Cosmic tent -->
  <path d="M20,190 L150,30 L280,190" stroke="url(#tentGradient)" stroke-width="6" fill="none" />
  <path d="M40,190 L150,50 L260,190" stroke="url(#tentGradient)" stroke-width="3" fill="none" />
  <path d="M60,190 L150,70 L240,190" stroke="url(#tentGradient)" stroke-width="2" fill="none" />
  <line x1="150" y1="30" x2="150" y2="190" stroke="#d1225b" stroke-width="5" />
  
  <!-- Circus floor -->
  <ellipse cx="150" cy="190" rx="140" ry="20" fill="#0e0a29" stroke="#d1225b" stroke-width="2" />
  
  <!-- Giraffe body -->
  <path d="M140,190 C130,160 130,150 135,130 C140,110 143,100 145,80 C147,60 150,30 145,20" 
        stroke="#ca9e4d" stroke-width="12" fill="none" />
  
  <!-- Giraffe head -->
  <ellipse cx="143" cy="20" rx="10" ry="6" fill="#e8c07d" />
  <ellipse cx="148" cy="18" rx="1" ry="1" fill="black" />
  <path d="M135,20 C133,18 132,16 133,14" stroke="#e8c07d" stroke-width="2" fill="none" />
  <path d="M140,26 C138,28 137,29 138,30" stroke="#ca9e4d" stroke-width="2" fill="none" />
  
  <!-- Giraffe spots -->
  <circle cx="143" cy="40" r="4" fill="url(#spotPattern)" />
  <circle cx="137" cy="60" r="5" fill="url(#spotPattern)" />
  <circle cx="145" cy="85" r="4" fill="url(#spotPattern)" />
  <circle cx="138" cy="105" r="5" fill="url(#spotPattern)" />
  <circle cx="146" cy="125" r="4" fill="url(#spotPattern)" />
  <circle cx="135" cy="145" r="5" fill="url(#spotPattern)" />
  <circle cx="140" cy="165" r="4" fill="url(#spotPattern)" />
  
  <!-- Giraffe legs -->
  <line x1="135" y1="170" x2="125" y2="190" stroke="#ca9e4d" stroke-width="8" />
  <line x1="140" y1="175" x2="155" y2="190" stroke="#ca9e4d" stroke-width="8" />
  
  <!-- Planets being juggled -->
  <circle cx="120" cy="90" r="15" fill="#5089C6" filter="url(#glow)">
    <animate attributeName="cy" values="90;70;90" dur="2s" repeatCount="indefinite" />
    <animate attributeName="cx" values="120;115;120" dur="2s" repeatCount="indefinite" />
  </circle>
  <path d="M115,90 C120,95 125,95 130,90" fill="none" stroke="#7BA9E0" stroke-width="1">
    <animate attributeName="cy" values="90;70;90" dur="2s" repeatCount="indefinite" />
    <animate attributeName="cx" values="120;115;120" dur="2s" repeatCount="indefinite" />
  </path>
  
  <circle cx="180" cy="100" r="12" fill="#E27B58" filter="url(#glow)">
    <animate attributeName="cy" values="100;80;100" dur="2.3s" repeatCount="indefinite" />
    <animate attributeName="cx" values="180;185;180" dur="2.3s" repeatCount="indefinite" />
  </circle>
  <ellipse cx="180" cy="100" rx="14" ry="3" fill="#C65B39" opacity="0.5">
    <animate attributeName="cy" values="100;80;100" dur="2.3s" repeatCount="indefinite" />
    <animate attributeName="cx" values="180;185;180" dur="2.3s" repeatCount="indefinite" />
  </ellipse>
  
  <circle cx="150" cy="60" r="10" fill="#9C5BB5" filter="url(#glow)">
    <animate attributeName="cy" values="60;40;60" dur="1.7s" repeatCount="indefinite" />
  </circle>
  <ellipse cx="150" cy="60" rx="13" ry="2" fill="#7D3A97" opacity="0.6">
    <animate attributeName="cy" values="60;40;60" dur="1.7s" repeatCount="indefinite" />
  </ellipse>
  
  <!-- Juggling path visualization -->
  <path d="M120,90 Q150,30 180,100" stroke="#ffffff" stroke-width="0.5" fill="none" opacity="0.3" stroke-dasharray="1,3">
    <animate attributeName="d" values="M120,90 Q150,30 180,100;M115,70 Q150,10 185,80;M120,90 Q150,30 180,100" dur="2.3s" repeatCount="indefinite" />
  </path>
  
  <!-- Stars and cosmic elements -->
  <circle cx="60" cy="70" r="2" fill="white">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="3s" repeatCount="indefinite" />
  </circle>
  <circle cx="250" cy="100" r="2" fill="white">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="5s" repeatCount="indefinite" />
  </circle>
  <circle cx="200" cy="40" r="1.5" fill="white">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="4s" repeatCount="indefinite" />
  </circle>
  
  <!-- Small flying comet -->
  <g>
    <animate attributeName="transform" type="translate" from="-50,20" to="350,100" dur="7s" repeatCount="indefinite" />
    <circle cx="0" cy="0" r="1" fill="white" />
    <line x1="0" y1="0" x2="-10" y2="0" stroke="white" stroke-width="0.5" opacity="0.6" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cosmicGradient" cx="50%" cy="50%">
      <stop offset="0%" stop-color="#0a0a2a"/>
      <stop offset="100%" stop-color="#0a0a4a"/>
    </radialGradient>
    <linearGradient id="tentGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#3a1a0a"/>
      <stop offset="100%" stop-color="#6a3a1a"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <filter id="spotlight">
      <feGaussianBlur stdDeviation="10" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#cosmicGradient)"/>
  <g transform="translate(150,150)">
    <!-- Circus Tent -->
    <path d="M-100,100 L100,100 Q0,-50 -100,100" fill="url(#tentGradient)" filter="url(#spotlight)"/>
    <rect x="-80" y="-70" width="160" height="140" fill="#ff69b4" opacity="0.2"/>
    
    <!-- Giraffe -->
    <path d="M0,-80 Q0,-60 20,-70 Q20,-70 40,-60 Q40,-60 40,-40 Q40,-40 20,-30 Q20,-30 0,-40 Q0,-40 0,-80" fill="url(#giraffeGradient)"/>
    <rect x="-20" y="-90" width="40" height="20" fill="#ffd700"/>
    <circle cx="0" cy="-50" r="15" fill="#ff69b4"/>
    <circle cx="30" cy="-30" r="10" fill="#4169e1"/>
    <circle cx="-30" cy="-30" r="10" fill="#4169e1"/>
    
    <!-- Planets -->
    <g transform="translate(40,50)">
      <circle r="15" fill="url(#planet1)"/>
      <circle r="15" fill="url(#planet2)"/>
      <circle r="15" fill="url(#planet3)"/>
    </g>
    
    <!-- Stars -->
    <g filter="url(#glow)">
      <circle cx="-80" cy="-60" r="2" fill="#fff"/>
      <circle cx="80" cy="-60" r="2" fill="#fff"/>
      <circle cx="-40" cy="60" r="2" fill="#fff"/>
      <circle cx="40" cy="60" r="2" fill="#fff"/>
    </g>
    
    <!-- Text -->
    <text x="-70" y="-90" font-size="20" fill="url(#textGradient)" filter="url(#glow)">
      Cosmic Circus
    </text>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image effectively captures the whimsical concept of a giraffe juggling planets in a cosmic circus tent.

    The giraffe's elongated form and the presence of planets are clearly depicted, adhering well to the prompt.

    The use of vibrant colors and a cosmic background enhances the visual appeal and creativity.

    Player 2's image lacks clear representation of the giraffe and the circus theme, making it less 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
38
Player 2
15
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
19
Player 2
10
Ellipses

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

Player 1
5
Player 2
Lines

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

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

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

Player 1
1
Player 2
3

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
8

Interactivity Metrics

Animations

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

Player 1
15
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
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
21
Player 2
10
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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

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