Back

SVG Drawing Match #68

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a waterfall that turns into an endless spiral staircase"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0F6FF"/>
    </linearGradient>
    <radialGradient id="islandGrad" cx="0.5" cy="0.3" r="0.7">
      <stop offset="0%" stop-color="#90B77D"/>
      <stop offset="90%" stop-color="#425F57"/>
    </radialGradient>
    <linearGradient id="waterGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#75B9E0"/>
      <stop offset="100%" stop-color="#3A8ACC"/>
    </linearGradient>
  </defs>

  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Floating island -->
  <path d="M80,100 Q150,80 220,100 Q260,110 240,140 Q220,170 180,165 Q140,180 100,165 Q60,170 40,140 Q20,110 80,100 Z" 
        fill="url(#islandGrad)"/>

  <!-- Grass details -->
  <path d="M90,105 Q150,90 210,105" stroke="#2D4739" fill="none" stroke-width="2"/>
  <path d="M85,115 Q150,100 215,115" stroke="#2D4739" fill="none" stroke-width="2"/>

  <!-- Waterfall start -->
  <path d="M140,110 Q150,112 160,110 L155,120 Q150,122 145,120 Z" fill="url(#waterGrad)"/>

  <!-- Spiral staircase/waterfall -->
  <path d="M150,120 
           Q180,140 160,160
           Q140,180 120,170
           Q100,190 120,210
           Q140,230 160,220
           Q180,240 160,260
           Q140,280 120,270
           Q100,290 120,300"
        fill="none"
        stroke="url(#waterGrad)"
        stroke-width="15"
        stroke-linecap="round"/>

  <!-- Water spray/mist -->
  <g opacity="0.6">
    <circle cx="155" cy="150" r="3" fill="#fff"/>
    <circle cx="125" cy="180" r="2" fill="#fff"/>
    <circle cx="145" cy="210" r="4" fill="#fff"/>
    <circle cx="135" cy="240" r="3" fill="#fff"/>
    <circle cx="155" cy="270" r="2" fill="#fff"/>
  </g>

  <!-- Trees -->
  <g transform="translate(100,90)">
    <path d="M0,0 L-5,10 L5,10 Z" fill="#2D4739"/>
    <path d="M0,-5 L-4,3 L4,3 Z" fill="#2D4739"/>
  </g>
  <g transform="translate(200,95)">
    <path d="M0,0 L-6,12 L6,12 Z" fill="#2D4739"/>
    <path d="M0,-6 L-5,4 L5,4 Z" fill="#2D4739"/>
  </g>

  <!-- Clouds -->
  <g fill="#fff" opacity="0.8">
    <path d="M50,50 Q60,45 70,50 Q80,40 90,50 Q100,45 95,55 Q100,60 90,60 Q80,70 70,60 Q60,65 50,60 Q45,55 50,50"/>
    <path d="M220,70 Q230,65 240,70 Q250,60 260,70 Q270,65 265,75 Q270,80 260,80 Q250,90 240,80 Q230,85 220,80 Q215,75 220,70"/>
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" 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="#87CEEB"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </linearGradient>
    <radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#2E8B57"/>
      <stop offset="100%" stop-color="#8FBC8F"/>
    </radialGradient>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1E90FF"/>
      <stop offset="100%" stop-color="#ADD8E6"/>
    </linearGradient>
    <pattern id="leafPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0 0 L10 0 L5 10 Z" fill="#228B22"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)"/>
  <g transform="translate(150, 100)">
    <circle cx="0" cy="0" r="40" fill="url(#islandGradient)"/>
    <circle cx="0" cy="0" r="35" fill="url(#leafPattern)"/>
  </g>
  <g transform="translate(100, 130)">
    <path d="M0 0 C20 0 20 20 40 20 C60 20 60 0 80 0" stroke="url(#waterGradient)" stroke-width="5" fill="none"/>
  </g>
  <g transform="translate(80, 130)">
    <path d="M0 0 a20 20 0 0 1 40 0 a20 20 0 0 1 -40 0" stroke="url(#waterGradient)" stroke-width="5" fill="none"/>
    <path d="M0 0 a20 20 0 0 1 40 0 a20 20 0 0 1 -40 0" transform="rotate(90, 20, 20)" stroke="url(#waterGradient)" stroke-width="5" fill="none"/>
    <path d="M0 0 a20 20 0 0 1 40 0 a20 20 0 0 1 -40 0" transform="rotate(180, 20, 20)" stroke="url(#waterGradient)" stroke-width="5" fill="none"/>
    <path d="M0 0 a20 20 0 0 1 40 0 a20 20 0 0 1 -40 0" transform="rotate(270, 20, 20)" stroke="url(#waterGradient)" stroke-width="5" fill="none"/>
  </g>
  <g transform="translate(100, 150)">
    <path d="M0 0 L0 100 Q50 150 100 100 L100 0 Z" fill="url(#waterGradient)"/>
    <path d="M0 100 L0 200 Q50 250 100 200 L100 100 Z" fill="url(#waterGradient)"/>
    <path d="M0 200 L0 300 Q50 350 100 300 L100 200 Z" fill="url(#waterGradient)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's submission clearly depicts a floating island with a waterfall that transitions into a spiral staircase, adhering closely to the prompt.

    The composition is straightforward and effectively communicates the concept with visual appeal.

    Player 2's image is more abstract and does not clearly illustrate the idea of a floating island with a spiral staircase, making Player 1's image the stronger choice for this task.

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

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

Player 1
1
Player 2
1
Circles

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

Player 1
5
Player 2
2
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
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
11
Player 2
9
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
3
Player 2
3
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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