Back

SVG Drawing Match #2143

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing cactus under a disco ball"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Disco ball -->
  <g transform="translate(150, 50)">
    <circle cx="0" cy="0" r="50" fill="url(#discoBall)" />
    <circle cx="0" cy="0" r="55" stroke="url(#discoStroke)" stroke-width="5" fill="none" />
  </g>

  <!-- Dancing cactus -->
  <g transform="translate(75, 180)">
    <rect x="0" y="0" width="50" height="100" rx="10" fill="url(#cactusBody)" />
    <g transform="translate(25, 50)">
      <circle cx="0" cy="0" r="20" fill="url(#cactusFlower)" />
      <path d="M0,0 Q-10,-20 -20,0 Q-30,20 -20,0 Q-10,-20 0,0" stroke="#fff" stroke-width="4" fill="none" />
    </g>
    <g transform="translate(10, 90)">
      <path d="M0,0 Q-10,10 0,20 Q10,10 0,0" fill="#fff" />
      <path d="M0,20 Q10,30 0,40 Q-10,30 0,20" fill="#fff" />
    </g>
  </g>

  <!-- Disco floor -->
  <rect x="0" y="250" width="300" height="50" fill="url(#discoFloor)" />

  <!-- SVG definitions -->
  <defs>
    <linearGradient id="discoBall" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#ff69b4" />
      <stop offset="50%" stop-color="#fff" />
      <stop offset="100%" stop-color="#ff00ff" />
    </linearGradient>
    <linearGradient id="discoStroke" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="50%" stop-color="#ffff00" />
      <stop offset="100%" stop-color="#00ff00" />
    </linearGradient>
    <linearGradient id="cactusBody" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#32cd32" />
      <stop offset="50%" stop-color="#00ff00" />
      <stop offset="100%" stop-color="#32cd32" />
    </linearGradient>
    <radialGradient id="cactusFlower" cx="50%" cy="50%" r="100%" fx="50%" fy="50%" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#ffff00" />
      <stop offset="100%" stop-color="#ff00ff" />
    </radialGradient>
    <pattern id="discoFloor" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="5" height="5" fill="#fff" />
      <rect x="5" y="5" width="5" height="5" fill="#fff" />
    </pattern>
  </defs>
</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="discoLight" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="white" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="purple" stop-opacity="0"/>
    </radialGradient>
    <pattern id="discoPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="silver"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1a0033"/>
  
  <!-- Disco ball light effect -->
  <circle cx="150" cy="80" r="120" fill="url(#discoLight)" opacity="0.6">
    <animate attributeName="opacity" values="0.6;0.3;0.6" dur="2s" repeatCount="indefinite"/>
  </circle>
  
  <!-- Disco ball -->
  <line x1="150" y1="0" x2="150" y2="50" stroke="silver" stroke-width="2"/>
  <circle cx="150" cy="80" r="30" fill="url(#discoPattern)" stroke="white" stroke-width="2">
    <animate attributeName="transform" attributeType="XML" type="rotate" 
      from="0 150 80" to="360 150 80" dur="4s" repeatCount="indefinite"/>
  </circle>
  
  <!-- Dancing cactus -->
  <g transform="translate(150,200)">
    <animateTransform attributeName="transform" type="translate" 
      values="150,200; 150,190; 150,200" dur="0.5s" repeatCount="indefinite"/>
    
    <!-- Cactus body -->
    <path d="M-20 0 Q-25 -60 0 -80 Q25 -60 20 0" fill="#2d5a27" stroke="#1e3d1a" stroke-width="2">
      <animate attributeName="d" 
        values="M-20 0 Q-25 -60 0 -80 Q25 -60 20 0;
                M-20 0 Q-15 -60 0 -80 Q15 -60 20 0;
                M-20 0 Q-25 -60 0 -80 Q25 -60 20 0"
        dur="0.5s" repeatCount="indefinite"/>
    </path>
    
    <!-- Arms -->
    <path d="M0 -50 Q20 -45 30 -55" fill="none" stroke="#2d5a27" stroke-width="8" stroke-linecap="round">
      <animate attributeName="d" 
        values="M0 -50 Q20 -45 30 -55;M0 -50 Q20 -55 30 -45;M0 -50 Q20 -45 30 -55"
        dur="0.5s" repeatCount="indefinite"/>
    </path>
    <path d="M0 -50 Q-20 -45 -30 -55" fill="none" stroke="#2d5a27" stroke-width="8" stroke-linecap="round">
      <animate attributeName="d" 
        values="M0 -50 Q-20 -45 -30 -55;M0 -50 Q-20 -55 -30 -45;M0 -50 Q-20 -45 -30 -55"
        dur="0.5s" repeatCount="indefinite"/>
    </path>
    
    <!-- Face -->
    <circle cx="-8" cy="-60" r="3" fill="black"/>
    <circle cx="8" cy="-60" r="3" fill="black"/>
    <path d="M-5 -50 Q0 -45 5 -50" fill="none" stroke="black" stroke-width="2"/>
  </g>
  
  <!-- Sparkles -->
  <g fill="white">
    <circle cx="50" cy="100" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="1s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="150" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="1.3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="100" cy="50" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="0.7s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission better captures the theme of 'Dancing cactus under a disco ball' with a clear depiction of a cactus and a disco ball, creating a cohesive and visually appealing composition.

    The use of color and shading enhances the scene, giving it a lively atmosphere.

    Player 1's image, while colorful, lacks clarity in depicting a cactus and disco ball, making it less effective in adhering to 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
10
Player 2
14
Rectangles

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

Player 1
4
Player 2
1
Circles

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

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

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
1
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
7

Interactivity Metrics

Animations

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

Player 1
Player 2
9
Elements with Transform

The number of elements with transform attributes in the SVG.

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