Back

SVG Drawing Match #1277

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Ice cream cone with skyscraper scoops, futuristic style"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for the cone -->
    <linearGradient id="coneGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#D2691E"/>
      <stop offset="100%" stop-color="#8B4513"/>
    </linearGradient>
    <!-- Gradient for the skyscraper scoops -->
    <linearGradient id="scoopGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#00BFFF"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </linearGradient>
    <!-- Pattern for windows -->
    <pattern id="windowsPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="10" height="10" fill="none" />
      <circle cx="3" cy="3" r="1" fill="#fff" />
      <circle cx="7" cy="3" r="1" fill="#fff" />
      <circle cx="3" cy="7" r="1" fill="#fff" />
      <circle cx="7" cy="7" r="1" fill="#fff" />
    </pattern>
  </defs>
  
  <!-- Cone -->
  <polygon points="150,210 110,290 190,290" fill="url(#coneGradient)" stroke="#5A2D0C" stroke-width="2"/>

  <!-- Base scoop (largest skyscraper scoop) -->
  <g transform="translate(80, 70)">
    <!-- Scoop base shape -->
    <path d="M70,140 C20,140 20,40 70,35 L130,35 C180,40 180,140 130,140 Z" fill="url(#scoopGradient)" stroke="#003F7F" stroke-width="2"/>
    <!-- Skyscraper windows pattern -->
    <rect x="40" y="55" width="20" height="20" fill="url(#windowsPattern)"/>
    <rect x="90" y="55" width="20" height="20" fill="url(#windowsPattern)"/>
    <rect x="40" y="90" width="20" height="20" fill="url(#windowsPattern)"/>
    <rect x="90" y="90" width="20" height="20" fill="url(#windowsPattern)"/>
    <rect x="65" y="115" width="20" height="20" fill="url(#windowsPattern)"/>
  </g>

  <!-- Middle scoop (smaller skyscraper scoop) -->
  <g transform="translate(120, 30)">
    <path d="M30,100 C-10,100 -10,10 30,5 L70,5 C110,10 110,100 70,100 Z" fill="url(#scoopGradient)" stroke="#003F7F" stroke-width="2"/>
    <rect x="10" y="30" width="15" height="15" fill="url(#windowsPattern)"/>
    <rect x="35" y="30" width="15" height="15" fill="url(#windowsPattern)"/>
    <rect x="10" y="55" width="15" height="15" fill="url(#windowsPattern)"/>
    <rect x="35" y="55" width="15" height="15" fill="url(#windowsPattern)"/>
  </g>

  <!-- Top scoop (smallest futuristic skyscraper scoop) -->
  <g transform="translate(140, 0)">
    <path d="M20,70 C0,70 0,0 20,-5 L50,-5 C70,0 70,70 50,70 Z" fill="url(#scoopGradient)" stroke="#003F7F" stroke-width="2"/>
    <rect x="10" y="15" width="8" height="8" fill="url(#windowsPattern)"/>
    <rect x="25" y="15" width="8" height="8" fill="url(#windowsPattern)"/>
    <rect x="10" y="30" width="8" height="8" fill="url(#windowsPattern)"/>
    <rect x="25" y="30" width="8" height="8" fill="url(#windowsPattern)"/>
  </g>
  
  <!-- Futuristic accent lines -->
  <line x1="150" y1="35" x2="150" y2="210" stroke="#FFD700" stroke-width="2" stroke-dasharray="5,5"/>
  <circle cx="150" cy="35" r="4" fill="#FFD700"/>
  <circle cx="150" cy="210" r="4" fill="#FFD700"/>
  
  <!-- Additional details for futuristic vibe -->
  <path d="M50,250 Q150,180 250,250" fill="none" stroke="#FF69B4" stroke-width="3" stroke-dasharray="10,5"/>
  <circle cx="50" cy="250" r="3" fill="#FF69B4"/>
  <circle cx="250" cy="250" r="3" fill="#FF69B4"/>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="coneGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#D4A373"/>
      <stop offset="100%" stop-color="#8B5E3C"/>
    </linearGradient>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1E3C72"/>
      <stop offset="100%" stop-color="#2A5298"/>
    </linearGradient>
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#B0C4DE"/>
      <stop offset="100%" stop-color="#4682B4"/>
    </linearGradient>
    <pattern id="windowPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="10" height="10" fill="rgba(255,255,255,0.1)"/>
      <circle cx="2" cy="2" r="1" fill="#FFF"/>
      <circle cx="8" cy="2" r="1" fill="#FFF"/>
      <circle cx="2" cy="8" r="1" fill="#FFF"/>
      <circle cx="8" cy="8" r="1" fill="#FFF"/>
    </pattern>
    <radialGradient id="glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)" />
      <stop offset="100%" stop-color="rgba(255,255,255,0)" />
    </radialGradient>
  </defs>

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

  <!-- Ice Cream Cone -->
  <polygon points="150,250 100,150 200,150" fill="url(#coneGradient)" />
  <path d="M100,150 L200,150 L180,250 L120,250 Z" fill="url(#coneGradient)" />

  <!-- Skyscraper Scoops -->
  <!-- First Skyscraper -->
  <g transform="translate(50, 80)">
    <rect x="0" y="50" width="50" height="100" rx="5" ry="5" fill="url(#buildingGradient)" stroke="#fff" stroke-width="2"/>
    <rect width="50" height="100" fill="url(#windowPattern)" />
    <circle cx="25" cy="25" r="25" fill="#FFD700" opacity="0.3"/>
    <ellipse cx="25" cy="25" rx="25" ry="10" fill="url(#glow)" />
  </g>

  <!-- Second Skyscraper -->
  <g transform="translate(125, 60)">
    <rect x="0" y="40" width="50" height="110" rx="5" ry="5" fill="url(#buildingGradient)" stroke="#fff" stroke-width="2"/>
    <rect width="50" height="110" fill="url(#windowPattern)" />
    <circle cx="25" cy="25" r="25" fill="#FF69B4" opacity="0.3"/>
    <ellipse cx="25" cy="25" rx="25" ry="10" fill="url(#glow)" />
  </g>

  <!-- Third Skyscraper -->
  <g transform="translate(200, 90)">
    <rect x="0" y="30" width="50" height="120" rx="5" ry="5" fill="url(#buildingGradient)" stroke="#fff" stroke-width="2"/>
    <rect width="50" height="120" fill="url(#windowPattern)" />
    <circle cx="25" cy="25" r="25" fill="#00FFFF" opacity="0.3"/>
    <ellipse cx="25" cy="25" rx="25" ry="10" fill="url(#glow)" />
  </g>

  <!-- Neon Lines -->
  <line x1="50" y1="80" x2="250" y2="80" stroke="#39FF14" stroke-width="2" stroke-dasharray="5,5"/>
  <line x1="50" y1="200" x2="250" y2="200" stroke="#FF00FF" stroke-width="2" stroke-dasharray="5,5"/>

  <!-- Additional Futuristic Elements -->
  <circle cx="150" cy="100" r="10" fill="#FF4500" stroke="#FFF" stroke-width="2"/>
  <path d="M150,90 L155,100 L145,100 Z" fill="#FFF" opacity="0.6"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission effectively captures the futuristic style and the concept of skyscrapers with its use of sleek, geometric forms and a modern color palette.

    The image adheres closely to the prompt with its clear depiction of skyscraper-like structures as ice cream scoops, and it exhibits strong technical quality and visual appeal.

    Player 1's image, while creative, lacks the same level of futuristic elements and detail in representing skyscrapers.

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

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

Player 1
14
Player 2
8
Circles

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

Player 1
8
Player 2
8
Ellipses

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

Player 1
Player 2
3
Lines

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

Player 1
1
Player 2
2
Polygons

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

Player 1
1
Player 2
1
Paths

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

Player 1
4
Player 2
2
Groups

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
4
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
16

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
3
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
17
Player 2
9
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
3
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