How can you figure out the points positions in the data of a path ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can you figure out the points positions in the data of a path ?

I find it really tricky and confusing to determine the x's and y's in the shape i'm designing , It requires lots of points to make a medium or an advanced design , and hence it takes a heck of a time to write them all correct espacially with arcs bézier curves and patterns , In addition to that , sometimes i had wrong points written which destroy the whole design and it takes my day to solve it because you know , the output page is bloody blank and even with very precise values such as decimals and fractions , How can you manage you to avoid all flaws and have precise well-written data ?

10th Sep 2020, 6:19 PM
Enthusiastic Mind
Enthusiastic Mind - avatar
1 Answer
+ 1
There are two methods in which you can use svg: •Using XML This is the default and basic way we use. It is just writing different rect, circle, etc tags to make up a drawing. <svg> <rect></rect> </svg> In this method if you want to prevent mistakes the only way is to PRACTICE. •Using Editing Softwares You can use free softwares like inkscape. It would allow you to draw and export it in SVG format. Then you can Import the svg as an Image in HTML... <img src="example.svg"/> Hope it helps... Reference Links: https://developer.mozilla.org/en-US/docs/Web/SVG https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial •USING INKSCAPE https://www.youtube.com/watch?v=SeJhexpT408 https://www.youtube.com/watch?v=KsCwsOqBLtg https://www.positivelysplendid.com/using-inkscape-to-easily-create-svg-files/
11th Sep 2020, 6:11 PM
Steve Sajeev
Steve Sajeev - avatar