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?
How can a Bézier curve be periodic?
1
$\begingroup$
computational-geometry
bezier-curve
periodic-functions
-
1For a closed curve, the Bézier compo$n$ents become periodic if the slopes at the "two" endpoints (actually, now just one point since they are coincident) are matched accordingly. – 2012-08-17
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".
-
0Hmm, I was sloppy there. I should have said that you could make a [periodic extension](http://math.stackexchange.com/a/63463) out of your Bézier curve components... – 2012-08-18