Back

SVG Drawing Match #1263

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating umbrella forest beneath a starry sky, in geometric abstraction"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="0.5" fill="white" opacity="0.8"/>
      <circle cx="7" cy="8" r="0.3" fill="white" opacity="0.6"/>
    </pattern>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0B0B3B"/>
      <stop offset="100%" style="stop-color:#1B1B6B"/>
    </linearGradient>
    <radialGradient id="umbrellaGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgba(255,255,255,0.2)"/>
      <stop offset="100%" style="stop-color:rgba(255,255,255,0)"/>
    </radialGradient>
  </defs>

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

  <!-- Umbrella Forest -->
  <g id="umbrellaForest">
    <g transform="translate(50,180)">
      <polygon points="0,0 30,-50 -30,-50" fill="#4A90E2" opacity="0.8"/>
      <line x1="0" y1="-45" x2="0" y2="30" stroke="#FFF" stroke-width="2"/>
    </g>
    <g transform="translate(120,150)">
      <polygon points="0,0 40,-60 -40,-60" fill="#E24A90" opacity="0.8"/>
      <line x1="0" y1="-55" x2="0" y2="40" stroke="#FFF" stroke-width="2"/>
    </g>
    <g transform="translate(200,200)">
      <polygon points="0,0 35,-55 -35,-55" fill="#90E24A" opacity="0.8"/>
      <line x1="0" y1="-50" x2="0" y2="25" stroke="#FFF" stroke-width="2"/>
    </g>
    <g transform="translate(250,170)">
      <polygon points="0,0 25,-45 -25,-45" fill="#E2904A" opacity="0.8"/>
      <line x1="0" y1="-40" x2="0" y2="35" stroke="#FFF" stroke-width="2"/>
    </g>
  </g>

  <!-- Floating Elements -->
  <g class="floatingShapes">
    <circle cx="80" cy="100" r="5" fill="#FFF" opacity="0.6">
      <animate attributeName="cy" values="100;90;100" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="180" cy="80" r="3" fill="#FFF" opacity="0.4">
      <animate attributeName="cy" values="80;70;80" dur="4s" repeatCount="indefinite"/>
    </circle>
    <polygon points="220,120 225,130 215,130" fill="#FFF" opacity="0.5">
      <animate attributeName="transform" values="rotate(0 220 120);rotate(360 220 120)" dur="6s" repeatCount="indefinite"/>
    </polygon>
  </g>

  <!-- Glow Effects -->
  <circle cx="150" cy="150" r="100" fill="url(#umbrellaGlow)" opacity="0.3">
    <animate attributeName="r" values="100;120;100" dur="5s" repeatCount="indefinite"/>
  </circle>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#2C3E50" />
      <stop offset="100%" stop-color="#223843" />
    </radialGradient>
    <linearGradient id="umbrellaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF6B6B" />
      <stop offset="100%" stop-color="#F7C6C7" />
    </linearGradient>
    <pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="1.5" fill="#FFF" />
    </pattern>
    <clipPath id="umbrellaClip">
      <circle cx="150" cy="150" r="120" />
    </clipPath>
  </defs>

  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <circle cx="150" cy="150" r="150" fill="url(#starPattern)" opacity="0.3" />

  <g clip-path="url(#umbrellaClip)">
    <path d="M50,250 L75,150 C85,180 115,180 125,150 L150,250 Z" fill="url(#umbrellaGradient)" transform="translate(40,-100)" />
    <path d="M170,250 L195,150 C205,180 235,180 245,150 L270,250 Z" fill="url(#umbrellaGradient)" transform="translate(-40,-80)" />
    <path d="M120,250 L145,150 C155,180 185,180 195,150 L220,250 Z" fill="url(#umbrellaGradient)" transform="translate(-20,-140)" />
  </g>

  <circle cx="150" cy="80" r="5" fill="#FFF" />
  <circle cx="200" cy="60" r="3" fill="#FFF" />
  <circle cx="250" cy="120" r="4" fill="#DAF7A6" />
  <circle cx="50" cy="50" r="2" fill="#DAF7A6" />
  <circle cx="80" cy="90" r="3" fill="#FFF" />
</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 more effectively captures the concept of a 'floating umbrella forest' through the use of distinct geometric shapes resembling umbrellas, set against a starry background that adheres closely to the prompt.

    The use of varied colors and clear, sharp lines enhances the visual appeal and creativity.

    Player 2's image lacks clarity in representing the umbrella concept and appears more abstract without a clear connection to 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
12
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
5
Player 2
8
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
4
Player 2
Polygons

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

Player 1
5
Player 2
Paths

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

Player 1
Player 2
3
Groups

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

Player 1
6
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
10
Player 2
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
6

Interactivity Metrics

Animations

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

Player 1
4
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
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
Player 2
15
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
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