HOW to draw a curve using SVG Path? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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 Respostas
+ 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