Back

SVG Drawing Match #451

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a waterfall pouring into a giant teacup"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#FFFFFF"/>
    </linearGradient>
    <linearGradient id="waterfallGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#00BFFF" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#1E90FF" stop-opacity="0.4"/>
    </linearGradient>
    <radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <radialGradient id="teacupGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F5F5DC"/>
      <stop offset="100%" stop-color="#D2B48C"/>
    </radialGradient>
    <pattern id="grassPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#32CD32"/>
    </pattern>
  </defs>

  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Floating Island -->
  <ellipse cx="150" cy="200" rx="80" ry="40" fill="url(#islandGradient)" stroke="#013220" stroke-width="2"/>
  <path d="M70,200 Q150,120 230,200 Z" fill="url(#grassPattern)" stroke="#013220" stroke-width="1"/>

  <!-- Trees on the Island -->
  <g>
    <!-- Tree 1 -->
    <polygon points="110,180 115,160 120,180" fill="#8B4513"/>
    <circle cx="115" cy="160" r="10" fill="#228B22"/>
    <!-- Tree 2 -->
    <polygon points="190,190 195,170 200,190" fill="#8B4513"/>
    <circle cx="195" cy="170" r="8" fill="#2E8B57"/>
    <!-- Tree 3 -->
    <polygon points="140,185 145,165 150,185" fill="#8B4513"/>
    <circle cx="145" cy="165" r="9" fill="#006400"/>
  </g>

  <!-- Waterfall -->
  <path d="M130,200 C140,220 160,220 170,200 L170,190 C160,210 140,210 130,190 Z" fill="url(#waterfallGradient)" stroke="#1E90FF" stroke-width="1" opacity="0.8"/>
  <path d="M130,190 Q150,210 170,190" stroke="#00BFFF" stroke-width="2" fill="none" opacity="0.6"/>

  <!-- Giant Teacup -->
  <g>
    <ellipse cx="150" cy="250" rx="60" ry="10" fill="url(#teacupGradient)" stroke="#8B4513" stroke-width="2"/>
    <path d="M90,250 L90,230 Q150,220 210,230 L210,250" fill="url(#teacupGradient)" stroke="#8B4513" stroke-width="2"/>
    <!-- Handle -->
    <path d="M210,235 Q230,240 210,245" fill="none" stroke="#8B4513" stroke-width="3"/>
  </g>

  <!-- Water Flow Details -->
  <g>
    <line x1="150" y1="190" x2="150" y2="240" stroke="#1E90FF" stroke-width="2" stroke-linecap="round" opacity="0.7"/>
    <circle cx="150" cy="240" r="5" fill="#00BFFF" opacity="0.8"/>
  </g>

  <!-- Clouds -->
  <g fill="#FFFFFF" opacity="0.8">
    <ellipse cx="60" cy="50" rx="20" ry="10"/>
    <ellipse cx="80" cy="50" rx="25" ry="12"/>
    <ellipse cx="100" cy="50" rx="20" ry="10"/>
    <ellipse cx="220" cy="70" rx="15" ry="8"/>
    <ellipse cx="240" cy="70" rx="20" ry="10"/>
    <ellipse cx="260" cy="70" rx="15" ry="8"/>
  </g>

  <!-- Sun with Gradient -->
  <radialGradient id="sunGradient" cx="30%" cy="30%" r="50%">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FFA500" />
  </radialGradient>
  <circle cx="50" cy="50" r="20" fill="url(#sunGradient)" />

</svg>
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="100%">
      <stop offset="0%" style="stop-color:#87CEEB"/>
      <stop offset="100%" style="stop-color:#E6E6FA"/>
    </linearGradient>
    <radialGradient id="islandGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#90EE90"/>
      <stop offset="100%" style="stop-color:#228B22"/>
    </radialGradient>
    <linearGradient id="waterGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#4169E1;stop-opacity:0.9"/>
    </linearGradient>
  </defs>

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

  <!-- Floating Island -->
  <path d="M80,120 Q150,80 220,120 Q250,140 220,160 Q150,200 80,160 Q50,140 80,120" 
        fill="url(#islandGrad)" stroke="#654321" stroke-width="3"/>
  
  <!-- Trees -->
  <g transform="translate(100,100)">
    <path d="M0,0 L-10,20 L10,20 Z" fill="#228B22"/>
    <rect x="-2" y="20" width="4" height="10" fill="#654321"/>
  </g>
  <g transform="translate(180,110)">
    <path d="M0,0 L-15,25 L15,25 Z" fill="#228B22"/>
    <rect x="-3" y="25" width="6" height="12" fill="#654321"/>
  </g>

  <!-- Waterfall -->
  <path d="M150,150 C150,150 150,220 150,280" 
        stroke="url(#waterGrad)" stroke-width="20" stroke-linecap="round"
        fill="none" opacity="0.8">
    <animate attributeName="stroke-dasharray" values="1,10;5,10;10,10" dur="1s" repeatCount="indefinite"/>
  </path>

  <!-- Teacup -->
  <g transform="translate(150,250)">
    <!-- Cup -->
    <path d="M-40,-20 Q-40,40 0,40 Q40,40 40,-20" 
          fill="#FFF" stroke="#333" stroke-width="3"/>
    <!-- Handle -->
    <path d="M35,0 Q55,0 55,20 Q55,40 35,40" 
          fill="none" stroke="#333" stroke-width="3"/>
    <!-- Saucer -->
    <ellipse cx="0" cy="40" rx="50" ry="10" 
             fill="#FFF" stroke="#333" stroke-width="2"/>
  </g>

  <!-- Cloud Accents -->
  <g fill="#FFF" opacity="0.8">
    <circle cx="50" cy="50" r="20"/>
    <circle cx="70" cy="50" r="25"/>
    <circle cx="90" cy="50" r="20"/>
    <circle cx="220" cy="70" r="25"/>
    <circle cx="240" cy="70" r="20"/>
    <circle cx="260" cy="70" r="15"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's submission creatively integrates the floating island and teacup concept by clearly depicting a waterfall connecting the two elements, thus adhering more closely to the prompt.

    The technical execution is detailed, with a cohesive composition that includes additional elements like trees and a sun, enhancing visual interest.

    Player 2's image, while clean, lacks the waterfall element, 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
24
Player 2
16
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
6
Player 2
6
Ellipses

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

Player 1
8
Player 2
1
Lines

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

Player 1
1
Player 2
Polygons

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

Player 1
3
Player 2
Paths

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
4

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

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
21
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
5
Player 2
3
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