Go to previous pageGo to next page

1.6. Curves

Learning Objectives

  • You will be able to distiguish between cubic and quadratic Bézier curves.
  • You will be able to draw a Bézier curve using the "De Casteljau Algorithm".
  • You will be able to list at least three main characteristics of Bèzier curves.

Introduction

The majority of the objects of the real-world can not be modelled by approximated straight lines, because the objects have smooth contours. To model objects such as e.g. rivers in a map, we have to introduce smooth curves. A mathematical description of these objects is normally not available. Of course, one can use the coordinates of the infinitely many points of the object as a model, but this is not feasible for a computer with finite storage.

Normally the form of the objects is approximated with pieces of planes, spheres, or other shapes that are easy to describe mathematically. In computer graphics, particularly Bézier curves are used to model smooth objects.
That's why the definition and characteristics of Bézier curves are explained in the next few paragraphs.



Go to previous page
Go to next page