As I know it, a periodic function is a function that repeats its values in regular intervals or period. However Bézier curves can also be periodic which means closed as opposed to non-periodic which means open. How is this related or possible?
Asked
Active
Viewed 492 times
1

J. M. ain't a mathematician
- 75,051
-
1For a closed curve, the Bézier components become periodic if the slopes at the "two" endpoints (actually, now just one point since they are coincident) are matched accordingly. – J. M. ain't a mathematician Aug 17 '12 at 01:02
1 Answers
3
A curve $C$ parameterised over the interval $[a,b]$ is closed if $C(a) = C(b)$. Or, in simpler terms, a curve is closed if its start point coincides with its end-point. A Bézier curve will be closed if its initial and final control points are the same.
A curve $C$ is periodic if $C(t+p) = C(t)$ for all $t$ ($p \ne 0$ is the period). Bézier curves are described by polynomials, so a Bézier curve can not be periodic. Just making its start and end tangents match (as J. M. suggested) does not make it periodic.
A spline (constructed as a string of Bézier curves) can be periodic.
People in the CAD field are sloppy in this area -- they often say "periodic" when they mean "closed".

J. M. ain't a mathematician
- 75,051

bubba
- 43,483
- 3
- 61
- 122
-
Hmm, I was sloppy there. I should have said that you could make a periodic extension out of your Bézier curve components... – J. M. ain't a mathematician Aug 18 '12 at 05:50