Back

SVG Drawing Match #1243

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating tea cup island with waterfalls, in geometric style"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF7F50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4682B4;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00BFFF;stop-opacity:1" />
    </linearGradient>
    <pattern id="waterPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0 0 Q5 5 10 0" stroke="#4169E1" stroke-width="1" fill="none"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#87CEEB"/>
  <g transform="translate(150,150)">
    <!-- Island base -->
    <polygon points="-100,-100 -50,-150 50,-150 100,-100 0,0" 
             fill="url(#waterGradient)" stroke="#2F4F4F" stroke-width="2"/>
    <!-- Tea cup -->
    <path d="M0,-80 Q40,-80 80,-40 L80,20 Q80,60 40,80 Q0,80 -40,60 Q-80,20 -80,-40 L-40,-40 Q0,-40 0,-80 Z" 
          fill="url(#cupGradient)" stroke="#CD5C5C" stroke-width="4"/>
    <!-- Handle -->
    <rect x="60" y="-20" width="20" height="80" rx="5" 
          fill="#FF6B6B" stroke="#CD5C5C" stroke-width="2"/>
    <!-- Waterfall 1 -->
    <path d="M-100,-100 L-80,-120 Q-70,-130 -60,-120 L-50,-100" 
          fill="none" stroke="url(#waterGradient)" stroke-width="8"/>
    <!-- Waterfall 2 -->
    <path d="M100,-100 L80,-120 Q70,-130 60,-120 L50,-100" 
          fill="none" stroke="url(#waterGradient)" stroke-width="8"/>
    <!-- Water ripples -->
    <g opacity="0.5">
      <circle cx="-30" cy="-30" r="15" fill="url(#waterPattern)"/>
      <circle cx="30" cy="-30" r="15" fill="url(#waterPattern)"/>
    </g>
    <!-- Island details -->
    <g transform="translate(0,50)">
      <rect width="200" height="100" rx="20" fill="#90EE90" 
            stroke="#698B69" stroke-width="2"/>
      <rect x="-50" y="-20" width="100" height="40" rx="10" fill="#8FBC8F"/>
    </g>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Water Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" rx="10" />
  <linearGradient id="water-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#ADD8E6" />
    <stop offset="100%" stop-color="#4682B4" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#water-gradient)" rx="10" opacity="0.5" />

  <!-- Island -->
  <polygon points="150,50 220,120 280,180 150,240 20,180 80,120" fill="#32CD32" />
  <linearGradient id="island-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#3E8E41" />
    <stop offset="100%" stop-color="#228B22" />
  </linearGradient>
  <polygon points="150,50 220,120 280,180 150,240 20,180 80,120" fill="url(#island-gradient)" opacity="0.5" />

  <!-- Tea Cup -->
  <ellipse cx="150" cy="80" rx="40" ry="30" fill="#F5F5DC" />
  <linearGradient id="tea-cup-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#FFF" />
    <stop offset="100%" stop-color="#F0E4CC" />
  </linearGradient>
  <ellipse cx="150" cy="80" rx="40" ry="30" fill="url(#tea-cup-gradient)" opacity="0.5" />
  <path d="M 120 60 L 180 60 L 170 100 L 130 100 Z" fill="#F5F5DC" />
  <path d="M 140 80 L 160 80 L 150 110 Z" fill="#F5F5DC" />

  <!-- Waterfalls -->
  <path d="M 220 120 L 230 140 L 240 160 L 250 180" stroke="#4682B4" stroke-width="5" />
  <path d="M 80 120 L 70 140 L 60 160 L 50 180" stroke="#4682B4" stroke-width="5" />
  <circle cx="230" cy="140" r="5" fill="#4682B4" />
  <circle cx="240" cy="160" r="5" fill="#4682B4" />
  <circle cx="250" cy="180" r="5" fill="#4682B4" />
  <circle cx="70" cy="140" r="5" fill="#4682B4" />
  <circle cx="60" cy="160" r="5" fill="#4682B4" />
  <circle cx="50" cy="180" r="5" fill="#4682B4" />

  <!-- Geometric Patterns -->
  <rect x="100" y="190" width="20" height="20" fill="#228B22" rx="5" />
  <rect x="130" y="190" width="20" height="20" fill="#3E8E41" rx="5" />
  <rect x="160" y="190" width="20" height="20" fill="#228B22" rx="5" />
  <rect x="190" y="190" width="20" height="20" fill="#3E8E41" rx="5" />
  <path d="M 110 210 L 130 230 L 150 210 Z" fill="#228B22" />
  <path d="M 140 230 L 160 250 L 180 230 Z" fill="#3E8E41" />
  <path d="M 170 210 L 190 230 L 210 210 Z" fill="#228B22" />
  <path d="M 200 230 L 220 250 L 240 230 Z" fill="#3E8E41" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission adheres more closely to the prompt with a clear depiction of a floating island and waterfalls in a geometric style.

    The use of shapes to represent the island and the distinct placement of waterfalls adds to the visual appeal.

    In contrast, Player 1's image lacks clarity and does not clearly convey the concept of a floating island or waterfalls.

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
11
Player 2
24
Rectangles

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

Player 1
4
Player 2
6
Circles

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

Player 1
2
Player 2
6
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
9

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

Complexity Metrics

Path Commands

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

Player 1
19
Player 2
33
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
3
Player 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