Chatgpt and the coming downfall

Out of context: Reply #46

  • Started
  • Last post
  • 125 Responses
  • _niko0

    Pretty cool, no more searching for vector icons, just ask Chat get what you want and it'll generate it for you. pretty damn cool:

    Here is a simple example of SVG values that define the shape of a heart:

    Copy code:

    <svg viewBox="0 0 100 100">
    <path d="M10,30 A20,20 0,0,1 50,30 A20,20 0,0,1 90,30 Q90,60 50,90 Q10,60 10,30 Z" />
    </svg>

    This defines a heart shape that starts at (10, 30), moves to (50, 30) using a curved path, then to (90, 30) using a straight line, and finally to (50, 90) and back to the starting point (10, 30) using a curved path. The "Q" and "A" commands in the path data are shorthand for "quadratic curveto" and "arc", respectively.

    Note that this is just one way to define a heart shape in SVG. There are many variations and different ways to create a heart shape using SVG, depending on the desired level of detail and complexity.

View thread