0
Arc in <path>
Good afternoon! I was drawing in SVG and I needed to make an "elliptical arc". I'm familiar with the "A" property, but I don't quite understand how it works. Please help me!
1 Réponse
0
Arc have 4 parameter ok.
Mx,y(moving points) Ax,y(for your arc depth) x-axis_rotation(it will tilt your arc in simple words it will make your arc oblique) large_arc_flag(value = 0 to 1 this is used to define the quality of circular arc),swip_flag(value = 0 or 1 it will decide the arc should go on original direction or opposite direction) x,y(end_point)
Simplified ex
d=("M20,30 A30,40 0 0,1 40,50")