Back

SVG Drawing Match #1438

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing cacti under a moonlit desert"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#F5F5DC;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFFACD;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#1E1E2C;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#41414F;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#D2B48C;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8B4513;stop-opacity:1" />
    </linearGradient>
    <pattern id="cactusPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#556B2F" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
  <ellipse cx="150" cy="280" rx="300" ry="50" fill="url(#sandGradient)" />
  <g transform="translate(50, 150)">
    <path d="M10 140 Q20 130 30 140 T50 140 Q60 130 70 140 T90 140 Q100 130 110 140 T130 140 Q140 130 150 140 T170 140 Q180 130 190 140 T210 140" stroke="#556B2F" stroke-width="10" stroke-linecap="round" fill="none" />
    <circle cx="30" cy="120" r="10" fill="#8FBC8F" />
    <circle cx="70" cy="120" r="10" fill="#8FBC8F" />
    <circle cx="110" cy="120" r="10" fill="#8FBC8F" />
    <circle cx="150" cy="120" r="10" fill="#8FBC8F" />
    <circle cx="190" cy="120" r="10" fill="#8FBC8F" />
  </g>
  <g transform="translate(150, 180)">
    <rect x="0" y="0" width="20" height="100" fill="url(#cactusPattern)" />
    <rect x="40" y="20" width="20" height="80" fill="url(#cactusPattern)" />
    <rect x="80" y="0" width="20" height="100" fill="url(#cactusPattern)" />
  </g>
  <g transform="translate(200, 200)">
    <ellipse cx="50" cy="50" rx="60" ry="30" fill="#8B4513" />
    <circle cx="30" cy="40" r="10" fill="#F5DEB3" />
    <circle cx="70" cy="40" r="10" fill="#F5DEB3" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b3d91"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.7" cy="0.3" r="0.5">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#dddddd"/>
    </radialGradient>
    <linearGradient id="groundGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#4d2600"/>
      <stop offset="100%" stop-color="#1a0800"/>
    </linearGradient>
    <radialGradient id="cactusGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#2e8b57"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="1" cy="1" r="1" fill="#ffffff"/>
    </pattern>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Stars -->
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.3"/>

  <!-- Moon -->
  <circle cx="240" cy="60" r="30" fill="url(#moonGradient)" />

  <!-- Ground -->
  <path d="M0,200 Q150,250 300,200 L300,300 L0,300 Z" fill="url(#groundGradient)" />

  <!-- Dancing Cacti -->
  <g>
    <!-- Cactus 1 -->
    <path d="M80,200 L80,150 Q85,140 90,150 L90,200 Z" fill="url(#cactusGradient)" />
    <path d="M80,150 Q70,130 85,120 Q70,110 80,100" stroke="#2e8b57" stroke-width="3" fill="none"/>
    <path d="M90,150 Q100,130 85,120 Q100,110 90,100" stroke="#2e8b57" stroke-width="3" fill="none"/>
    
    <!-- Cactus 2 -->
    <path d="M160,200 L160,140 Q165,130 170,140 L170,200 Z" fill="url(#cactusGradient)" />
    <path d="M160,140 Q150,120 165,110 Q150,100 160,90" stroke="#2e8b57" stroke-width="3" fill="none"/>
    <path d="M170,140 Q180,120 165,110 Q180,100 170,90" stroke="#2e8b57" stroke-width="3" fill="none"/>

    <!-- Cactus 3 -->
    <path d="M240,200 L240,160 Q245,150 250,160 L250,200 Z" fill="url(#cactusGradient)" />
    <path d="M240,160 Q230,140 245,130 Q230,120 240,110" stroke="#2e8b57" stroke-width="3" fill="none"/>
    <path d="M250,160 Q260,140 245,130 Q260,120 250,110" stroke="#2e8b57" stroke-width="3" fill="none"/>
  </g>

  <!-- Dancing Movement Lines -->
  <path d="M80,100 Q75,90 70,100" stroke="#ffffff" stroke-width="2" fill="none" opacity="0.5"/>
  <path d="M160,90 Q155,80 150,90" stroke="#ffffff" stroke-width="2" fill="none" opacity="0.5"/>
  <path d="M240,110 Q235,100 230,110" stroke="#ffffff" stroke-width="2" fill="none" opacity="0.5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image more clearly depicts the concept of 'dancing cacti' with a recognizable cactus shape and a sense of movement through the twisting design.

    The background features a detailed night sky, enhancing the moonlit desert ambiance.

    Player 1's image, while creative, lacks clear representation of cacti and movement, making it less effective in conveying the theme.

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

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

Player 1
4
Player 2
2
Circles

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

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

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

Player 1
3
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
8

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
3
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
11
Player 2
44
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
4
Player 2
5
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