Back

SVG Drawing Match #1248

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a waterfall pouring into a teacup; use a minimalist style"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0d8f1" />
      <stop offset="100%" stop-color="#ffffff" />
    </linearGradient>
    <linearGradient id="islandGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8fb339" />
      <stop offset="100%" stop-color="#567d46" />
    </linearGradient>
    <linearGradient id="waterfallGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#b0e0e6" />
      <stop offset="100%" stop-color="#5dade2" />
    </linearGradient>
    <radialGradient id="teacupGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff8dc" />
      <stop offset="100%" stop-color="#f5deb3" />
    </radialGradient>
  </defs>
  
  <!-- Floating island -->
  <g id="island">
    <ellipse cx="150" cy="120" rx="60" ry="20" fill="url(#islandGradient)" />
    <path d="M90,120 Q150,60 210,120 L210,130 Q150,80 90,130 Z" fill="url(#islandGradient)" />
    <!-- Minimalist trees -->
    <path d="M130,90 L130,70 M130,70 L125,75 M130,70 L135,75" stroke="#3e5f2e" stroke-width="2" fill="none"/>
    <path d="M170,95 L170,75 M170,75 L165,80 M170,75 L175,80" stroke="#3e5f2e" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Waterfall -->
  <g id="waterfall">
    <path d="M150,120 C145,140 145,160 150,170 C155,160 155,140 150,120" fill="url(#waterfallGradient)" />
    <!-- Water droplets effect -->
    <path d="M148,140 C147,142 147,144 148,146" stroke="#a0d8f1" stroke-width="0.5" fill="none"/>
    <path d="M152,150 C151,152 151,154 152,156" stroke="#a0d8f1" stroke-width="0.5" fill="none"/>
    <path d="M149,160 C148,162 148,164 149,166" stroke="#a0d8f1" stroke-width="0.5" fill="none"/>
  </g>
  
  <!-- Teacup at the bottom -->
  <g id="teacup">
    <!-- Cup Body -->
    <path d="M100,230 Q150,200 200,230 L190,240 Q150,220 110,240 Z" fill="url(#teacupGradient)" stroke="#d2b48c" stroke-width="2" />
    <!-- Cup Handle -->
    <path d="M200,230 Q220,235 200,250" fill="none" stroke="#d2b48c" stroke-width="2" />
    <!-- Water Pouring into Teacup -->
    <path d="M150,170 L150,210" stroke="url(#waterfallGradient)" stroke-width="4" stroke-linecap="round"/>
    <circle cx="150" cy="210" r="2" fill="#5dade2"/>
  </g>
  
  <!-- Floating effect: Soft shadow under island -->
  <ellipse cx="150" cy="135" rx="40" ry="6" fill="rgba(0,0,0,0.15)" />
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f4faff" />
      <stop offset="100%" stop-color="#e6f0fa" />
    </linearGradient>
    
    <!-- Island gradient -->
    <linearGradient id="islandGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#91dbc2" />
      <stop offset="100%" stop-color="#7ccbad" />
    </linearGradient>
    
    <!-- Waterfall gradient -->
    <linearGradient id="waterfallGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#c4e7ff" opacity="0.7" />
      <stop offset="50%" stop-color="#a3d8ff" opacity="0.8" />
      <stop offset="100%" stop-color="#c4e7ff" opacity="0.7" />
    </linearGradient>
    
    <!-- Teacup gradient -->
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#f7f7f7" />
    </linearGradient>
    
    <!-- Water in cup gradient -->
    <linearGradient id="waterInCupGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#c4e7ff" />
      <stop offset="50%" stop-color="#a3d8ff" />
      <stop offset="100%" stop-color="#c4e7ff" />
    </linearGradient>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Subtle clouds -->
  <path d="M40,50 Q60,40 80,50 Q95,40 110,50 Q95,60 80,55 Q60,60 40,50" fill="white" opacity="0.4" />
  <path d="M200,30 Q220,20 240,30 Q255,20 270,30 Q255,40 240,35 Q220,40 200,30" fill="white" opacity="0.3" />
  
  <!-- Shadow under floating island -->
  <ellipse cx="150" cy="135" rx="55" ry="10" fill="#e6f0fa" opacity="0.5" />
  
  <!-- Floating island -->
  <path d="M90,110 Q120,90 150,85 Q180,90 210,110 Q185,125 115,125 Q90,120 90,110" fill="url(#islandGradient)" stroke="#7cc4a7" stroke-width="0.5" />
  
  <!-- Minimal grass tufts -->
  <line x1="120" y1="100" x2="120" y2="90" stroke="#6bba9f" stroke-width="0.7" />
  <line x1="130" y1="98" x2="130" y2="88" stroke="#6bba9f" stroke-width="0.7" />
  <line x1="140" y1="96" x2="140" y2="86" stroke="#6bba9f" stroke-width="0.7" />
  <line x1="160" y1="96" x2="160" y2="86" stroke="#6bba9f" stroke-width="0.7" />
  <line x1="170" y1="98" x2="170" y2="88" stroke="#6bba9f" stroke-width="0.7" />
  <line x1="180" y1="100" x2="180" y2="90" stroke="#6bba9f" stroke-width="0.7" />
  
  <!-- Trees -->
  <circle cx="125" cy="95" r="5" fill="#6bba9f" />
  <circle cx="175" cy="95" r="4" fill="#6bba9f" />
  <line x1="150" y1="100" x2="150" y2="85" stroke="#6bba9f" stroke-width="1" />
  <circle cx="150" cy="83" r="3" fill="#6bba9f" />
  
  <!-- Waterfall -->
  <path d="M150,100 C152,140 148,180 150,220" stroke="url(#waterfallGradient)" stroke-width="6" fill="none" stroke-linecap="round" />
  
  <!-- Splash where waterfall meets cup -->
  <path d="M146,220 Q150,225 154,220" stroke="#a3d8ff" stroke-width="0.8" fill="none" opacity="0.6" />
  <circle cx="150" cy="222" r="1" fill="#a3d8ff" opacity="0.5" />
  <circle cx="147" cy="223" r="0.7" fill="#a3d8ff" opacity="0.4" />
  <circle cx="153" cy="223" r="0.7" fill="#a3d8ff" opacity="0.4" />
  
  <!-- Teacup -->
  <ellipse cx="150" cy="250" rx="32" ry="6" fill="url(#teacupGradient)" />
  <path d="M118,250 C118,232 182,232 182,250" fill="url(#teacupGradient)" stroke="#f0f0f0" stroke-width="0.5" />
  
  <!-- Water in the cup -->
  <ellipse cx="150" cy="244" rx="26" ry="4" fill="url(#waterInCupGradient)" />
  
  <!-- Water ripples in cup -->
  <path d="M135,244 Q150,242 165,244" stroke="#a3d8ff" stroke-width="0.5" fill="none" opacity="0.5" />
  <path d="M140,246 Q150,245 160,246" stroke="#a3d8ff" stroke-width="0.4" fill="none" opacity="0.4" />
  
  <!-- Teacup handle -->
  <path d="M182,242 C195,242 195,252 182,252" stroke="#f0f0f0" stroke-width="1.5" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the concept of a floating island with a waterfall in a minimalist style.

    The clean lines and subtle color palette enhance the visual appeal, while the clear depiction of a waterfall flowing into a teacup aligns well with the prompt.

    Player 1's image, while creative, lacks clarity in the depiction of the waterfall and teacup integration, impacting overall adherence 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
14
Player 2
26
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
1
Player 2
6
Ellipses

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

Player 1
2
Player 2
3
Lines

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
5
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
14

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
11

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