+ 1
What is a path id in svg?
what does path decribe. Why is it used?
1 Answer
0
SVG Path - <path>
The <path> element is used to define a path.
The following commands are available for path data:
M = moveto
L = lineto
H = horizontal lineto
V = vertical lineto
C = curveto
S = smooth curveto
Q = quadratic BĂ©zier curve
T = smooth quadratic BĂ©zier curveto
A = elliptical Arc
Z = closepath
Note:Â All of the commands above can also be expressed with lower letters. Capital letters means absolutely positioned, lower cases means relatively positioned.