Composite Bézier curve

See also: Bézier curve
Beziergon - The red beziergon passes through the blue vertices, the green points are control points that determine the shape of the connecting Bézier curves

In geometric modelling and in computer graphics, a composite Bézier curve is a piecewise Bézier curve that is at least continuous. In other words, a composite Bézier curve is a series of Bézier curves joined end to end where the last point of one curve coincides with the starting point of the next curve. Depending on the application, additional smoothness requirements (such as C1 or C2 continuity) may be added.[1]

A continuous composite Bézier is also called a polybezier, by similarity to polyline, but whereas in polylines the points are connected by straight lines, in a polybezier the points are connected by Bézier curves. A beziergon (also called bezigon) is a closed path composed of Bézier curves. It is similar to a polygon in that it connects a set of vertices by lines, but whereas in polygons the vertices are connected by straight lines, in a beziergon the vertices are connected by Bézier curves. [2][3][4] Some authors even call a C0 composite Bézier curve a "Bézier spline";[5] the latter term is however used by other authors as a synonym for the (non-composite) Bézier curve, and they add "composite" in front of "Bézier spline" to denote the composite case.[6]

Perhaps the most common use of composite Béziers is to describe the outline of each letter in a PostScript or PDF file. Such outlines are composed of one beziergon for open letters, or multiple beziergons for closed letters. Modern vector graphics and computer font systems like PostScript, Asymptote, Metafont, OpenType, and SVG use composite Bézier curves composed of cubic Bézier curves (3rd order curves) for drawing curved shapes.

Sinc function approximated using a smooth Bézier spline, i.e., a series of smoothly-joined Bézier curves

Smooth joining

Composite Bezier curves can be smoothed to any desired degree of smoothness using Stärk's construction.[7]

C2 continuous composite cubic Bezier curves are actually cubic B-splines,[8] and vice versa.[9]

Approximating circular arcs

In case circular arc primitives are not supported in a particular environment, they may be approximated by Bézier curves.[10] Commonly, eight quadratic segments[11] or four cubic segments are used to approximate a circle. It is desirable to find the length of control points which result in the least approximation error for a given number of cubic segments.

Using four curves

Considering only the 90-degree unit-circular arc in the first quadrant, we define the endpoints and with control points and , respectively, as:

From the definition of the cubic Bézier curve, we have:

With the point as the midpoint of the arc, we may write the following two equations:

Solving these equations for the x-coordinate (and identically for the y-coordinate) yields:

General case

We may compose a circle of radius from an arbitrary number of cubic Bézier curves.[12] Let the arc start at point and end at point , placed at equal distances above and below the x-axis, spanning an arc of angle :

The control points may be written as:[13]

Examples

Fonts

TrueType fonts use composite Béziers composed of quadratic Bézier curves (2nd order curves) -- little pieces of parabolas. To describe a typical type design as a computer font to any given accuracy, 3rd order Beziers require less data than 2nd order Beziers; and these in turn require less data than a series of straight lines. This is true even though any one straight line segment requires less data than any one segment of a parabola; and that parabolic segment in turn requires less data than any one segment of a 3rd order curve.

See also

References

  1. Eugene V. Shikin; Alexander I. Plis (14 July 1995). Handbook on Splines for the User. CRC Press. pp. 96–. ISBN 978-0-8493-9404-1.
  2. Microsoft polybezier API
  3. Papyrus beziergon API reference
  4. "A better box of crayons". InfoWorld. 1991.
  5. Rebaza, Jorge (2012-04-24). A First Course in Applied Mathematics. John Wiley & Sons. ISBN 9781118277157.
  6. (Firm), Wolfram Research (1996-09-13). Mathematica ® 3.0 Standard Add-on Packages. Cambridge University Press. ISBN 9780521585859.
  7. Prautzsch, Hartmut; Boehm, Wolfgang; Paluszny, Marco (2002-08-06). Bézier and B-Spline Techniques. Springer Science & Business Media. ISBN 9783540437611.
  8. Bartels, Richard H.; Beatty, John C.; Barsky, Brian A. (1987-01-01). An Introduction to Splines for Use in Computer Graphics and Geometric Modeling. Morgan Kaufmann. ISBN 9781558604001.
  9. Agoston, Max K. (2005-12-06). Computer Graphics and Geometric Modelling: Implementation & Algorithms. Springer Science & Business Media. ISBN 9781846281082.
  10. Stanislav, G. Adam. "Drawing a circle with Bézier Curves". Retrieved 10 April 2010.
  11. "Digitizing letterform designs". Apple. Retrieved 26 July 2014.
  12. Riškus, Aleksas (October 2006). "APPROXIMATION OF A CUBIC BEZIER CURVE BY CIRCULAR ARCS AND VICE VERSA" (PDF). INFORMATION TECHNOLOGY AND CONTROL. Department of Multimedia Engineering, Kaunas University of Technology. 35 (4): 371–378. ISSN 1392-124X.
  13. DeVeneza, Richard. "Drawing a circle with Bézier Curves" (PDF). Retrieved 10 April 2010.
This article is issued from Wikipedia - version of the 11/19/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.