What means d in the <path> drawing? And how can I draw the elliptic figures in path? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What means d in the <path> drawing? And how can I draw the elliptic figures in path?

20th Oct 2016, 7:51 AM
Eldarian
Eldarian - avatar
1 Answer
+ 2
d = "path data" *example code to create elliptic figures using <path>* <svg height="400" width="450"> <path d="M 100 350 q 150 -300 300 0" stroke="red" stroke-width="5" fill="none" /> </svg> Yes, it's complex. Because of the complexity involved in drawing paths, it is highly recommended to use an SVG editor to create complex graphics.
1st Apr 2017, 6:10 AM
Christian Hamdani
Christian Hamdani - avatar