HOW to draw a curve using SVG Path? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

HOW to draw a curve using SVG Path?

I don't know how to draw a Wave with Multiple curves using svg path attribute?Help Me!.

7th Sep 2017, 11:28 AM
Joel Roy
Joel Roy - avatar
3 Answers
+ 4
You should use path/polyline with points at small intervals to make a curve from straight lines using svg only.
7th Sep 2017, 11:34 AM
Lakshay
Lakshay - avatar
+ 2
https://www.w3schools.com/graphics/svg_path.asp Bézier curves are used to model smooth curves that can be scaled indefinitely. Generally, the user selects two endpoints and one or two control points. A Bézier curve with one control point is called a quadratic Bézier curve and the kind with two control points is called cubic.
7th Sep 2017, 12:02 PM
Calviղ
Calviղ - avatar
+ 1
How to Use Path Values:Q,C,T,S
7th Sep 2017, 11:35 AM
Joel Roy
Joel Roy - avatar