dancwilson’s avatardancwilson’s Twitter Archive—№ 1,155

    1. The Basics of Handwriting SVG Paths (Part 3): <path d="M 40,20 C 20,280 280,280 260,20 Z" /> Z: close the current path being drawn by making a straight line from the previous coordinates to the initial coordinates #CssMotionPath
  1. …in reply to @dancwilson
    The Basics of Handwriting SVG Paths (Part 3.5): <path d="M 40,20 L 140,120 M 220,20 L 140,240 L 260,200 Z" /> Z: Path definitions do not have to be continuous, so Z will close the current part only
    1. …in reply to @dancwilson
      The Basics of Handwriting SVG Paths (Part 4): <path d="M 100,100 L 60,160" /> vs <path d="M 100,100 l 60,160" /> Uppercase Letters: Coordinates that follow are absolute Lowercase Letters: Coordinates are relative to the previous coordinates