Skip to content

Instantly share code, notes, and snippets.

@marquizzo
marquizzo / SVGPathCheatsheet.md
Last active September 23, 2021 06:47
Quick cheatsheet from the SVG <path> tutorial from MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths

Letter-casing:

CAPITALS = Global coordinates
lowercase = relative coords

Line Commands:

M x y: Move to
m x y: move to, relative to last position
L x y: Line to
l x y: line to, relative to last position
H x: Horizontal line to position x\