Back

SVG Drawing Match #2357

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An ice cream cone melting in the shape of a crescent moon on a sunny beach."

SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#4682B4"/>
    </linearGradient>
    <!-- Sand gradient -->
    <linearGradient id="sandGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFF8DC"/>
      <stop offset="100%" stop-color="#F4A460"/>
    </linearGradient>
    <!-- Sun radial gradient -->
    <radialGradient id="sunGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <!-- Cone gradient -->
    <linearGradient id="coneGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#F4A460"/>
      <stop offset="100%" stop-color="#D2691E"/>
    </linearGradient>
    <!-- Ice cream (scoop) gradient -->
    <linearGradient id="iceGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFB6C1"/>
      <stop offset="100%" stop-color="#FFC0CB"/>
    </linearGradient>
    <!-- Waffle pattern for cone details -->
    <pattern id="wafflePattern" patternUnits="userSpaceOnUse" width="6" height="6">
      <path d="M0,0 L6,6 M6,0 L0,6" stroke="#A0522D" stroke-width="0.5"/>
    </pattern>
    <!-- Clip path for cone cross-hatch -->
    <clipPath id="coneClip">
      <polygon points="130,160 170,160 150,230"/>
    </clipPath>
  </defs>

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

  <!-- Sun on the upper right -->
  <circle cx="250" cy="50" r="30" fill="url(#sunGradient)"/>

  <!-- Sandy beach -->
  <rect x="0" y="220" width="300" height="80" fill="url(#sandGradient)"/>

  <!-- Wavy ocean line near the beach -->
  <path d="M0,210 Q50,200 100,210 T200,210 T300,210 L300,220 L0,220 Z" fill="#87CEEB" opacity="0.6"/>

  <!-- Ice cream scoop in a crescent shape with a melting drip -->
  <g id="iceCream">
    <path
      d="M 180,120 
         A 40,40 0 1,0 100,120 
         A 40,40 0 1,0 180,120 Z
         M 200,120 
         A 40,40 0 1,1 120,120 
         A 40,40 0 1,1 200,120 Z"
      fill="url(#iceGradient)"
      fill-rule="evenodd"/>
    <path
      d="M 120,160 
         C 115,175, 130,185, 135,175 
         C 130,170, 125,165, 120,160 Z"
      fill="url(#iceGradient)"/>
  </g>

  <!-- Ice cream cone -->
  <polygon points="130,160 170,160 150,230" fill="url(#coneGradient)"/>
  <g clip-path="url(#coneClip)">
    <line x1="130" y1="160" x2="150" y2="230" stroke="#A0522D" stroke-width="1"/>
    <line x1="150" y1="160" x2="150" y2="230" stroke="#A0522D" stroke-width="1"/>
    <line x1="170" y1="160" x2="150" y2="230" stroke="#A0522D" stroke-width="1"/>
    <line x1="137" y1="180" x2="163" y2="180" stroke="#A0522D" stroke-width="1"/>
    <line x1="140" y1="200" x2="160" y2="200" stroke="#A0522D" stroke-width="1"/>
  </g>
</svg>
SVG by Gemini 2.5 Flash Preview High 04-17
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="sandGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,235,180);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(240,210,150);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(135,206,235);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,191,255);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="iceCreamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,204,204);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,102,102);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="coneGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(205,133,63);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(139,69,19);stop-opacity:1" />
    </linearGradient>
    <pattern id="wavePattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <path d="M0 10 C 5 5, 15 5, 20 10 S 35 15, 40 10" fill="none" stroke="#4682b4" stroke-width="2"/>
    </pattern>
  </defs>

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

  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="yellow">
    <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 250 50" to="360 250 50" dur="10s" repeatCount="indefinite"/>
  </circle>
   <circle cx="250" cy="50" r="40" fill="yellow" opacity="0.3">
    <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 250 50" to="360 250 50" dur="12s" repeatCount="indefinite"/>
  </circle>

  <!-- Beach Sand -->
  <rect x="0" y="150" width="300" height="150" fill="url(#sandGradient)"/>

  <!-- Ocean -->
   <rect x="0" y="140" width="300" height="20" fill="#87cefa"/>
   <rect x="0" y="140" width="300" height="20" fill="url(#wavePattern)" opacity="0.5"/>


  <!-- Melting Ice Cream Crescent Moon -->
  <path d="M 150 100 C 180 80, 220 80, 250 100 C 240 140, 200 160, 150 150 C 100 160, 60 140, 50 100 Z" fill="url(#iceCreamGradient)">
    <animate attributeName="d" dur="5s" repeatCount="indefinite" values="M 150 100 C 180 80, 220 80, 250 100 C 240 140, 200 160, 150 150 C 100 160, 60 140, 50 100 Z; M 150 105 C 185 85, 225 85, 255 105 C 245 145, 205 165, 155 155 C 105 165, 65 145, 55 105 Z; M 150 100 C 180 80, 220 80, 250 100 C 240 140, 200 160, 150 150 C 100 160, 60 140, 50 100 Z"/>
  </path>

  <!-- Cone -->
  <path d="M 140 150 L 160 150 L 150 200 Z" fill="url(#coneGradient)"/>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission better represents the concept of a melting ice cream cone in the shape of a crescent moon.

    The crescent-like shape is more distinct and visually ties into the melting theme, while also integrating the beach and sun effectively.

    Player 2's design is less clear in conveying the crescent moon shape and feels less cohesive overall.

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
9
Rectangles

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

Player 1
2
Player 2
4
Circles

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

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

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

Player 1
2
Player 2
Paths

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

Player 1
4
Player 2
3
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
1
Player 2
2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
3

Interactivity Metrics

Animations

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

Player 1
Player 2
3
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
23
Player 2
12
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
7
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.