Børre Stenseth
Mathematics>Parametric form

Parametric form

What
image1
Curves and surfaces described by parameters

Understand how we can represent a curve in a plane or space with a parameter that "runs along" the curve.

In many situations like curve adjustment, surface adjustment and animations it is smart to describe curves parametric. It makes it easier to reason and calculate and it makes it easier to program.

Line

Let us study a straight line in a plane as a simple first example.

parlin1

The triangles P1,A,P and P1,B,P2 are similar and we can set up the following:

ParamsLine1

and find for example y expressed by coordinates for the two known points and x.

ParamsLine2

As an alternative we could set up a parametric equation for the line. Parametric means that the expression contains a parameter, t, that changes when we run along the line. For a line in the plane we get two parametric expressions, one for x and one for y. Since we have a line, both are linear.

      P=P1+t·(P2-P1)
      x(t)=x1+(x2-x1)·t
      y(t)=y1+(y2-y1)·t
    

We see that x(0)=x1 and y(0)=y1, and x(1)=x2 and y(1)=y2. Since the expressions are linear we know that when t runs from 0 to 1, x and y runs from P1 to P2.

A parametric form gives control over the length of the line, not only the line direction.

Even this simple example can be useful in some situations. If we are going to carry out an animation that moves in a straight line, we can control the animation with small t-steps. We control speed by varying the t-steps. More compound movements can be controlled by a sequence of linear movements, if we don't come up with something more clever.

An extension to include lines in space is simple. If we know the end points: P1(x1,y1,z1) and P2(x2,y2,z2), we get:

      P=P1+t·(P2-P1)

      x(t)=x1+(x2-x1)·t
      y(t)=y1+(y2-y1)·t
      z(t)=z1+(z2-z1)·t
    

Circle

The most common way to write a circle is:
x2 +y2 =r2.

sirkel

Parametrically, this can be written as:

      y(t)=r·sin(2·pi·t)
      x(t)=r·cos(2·pi·t)
    

or if we state the angle in degrees:

      y(t)=r·sin(360·t)
      x(t)=r·cos(360·t)
    

When t runs from 0 to 1, the angle argument runs a full circle,
and the point ( x(t) , y(t) ) describes a circle.

Remember: that the trigonometric functions in C, C++ and Java expects radians as parameters, while the rotation function in OpenGL expects degrees.

Helix

A part of a helix in space, around the z-axis, can be describes as:

      y(t)=r·sin(2·pi·t)
      x(t)=r·cos(2·pi·t)
      z(t)= k·t
    

Where k state the distance between two rings in the spiral. If we let t run over a larger interval, for example 0..5 we will get 5 rotations on the spiral. We also see that we have a handy mechanism to calculate circles and circle segments.

Sphere

kuledrawing

we normally describe a sphere like this, with radius r:

kule1

Parametrically we can describe the coordinates for a point on the spheres surface like this:

ParamsSphere1
ParamsSphere2
ParamsSphere3
ParamsSphere4

Ellipse

ellipsedrawing

Normally we describe an ellipse like this:

ParamsEllips

Piet Hein [1] , the Danish mathematician, poet an artist, introduced his super ellipse according to the following formula:

ParamsEllipsSuper

When the exponential increases, the form of the ellipse changes towards a rectangle. Piet Hein suggested that 2.5 gives us the best esthetical result. He designed Sergels torg in Stockholm as a super ellipse with the relation between the two radie 5:6.

Parametrically we describe an ellipse like this:

ParamsEllips1
ParamsEllips2
ParamsEllips3

we get a super ellipse in parametric if we use an exponent n on sinus and cosinus. Note that the ellipse will grow towards a rectangle when n decreases. If rx=ry we end up with a circle, when n=1.

superellipse3

ParamsEllipsSuper1
ParamsEllipsSuper2
ParamsEllipsSuper3

Ellipsoid

ellipsoidedrawing

In three dimensions we describe an elliptical form like this:

ParamsEllipsoide

Parametrical form:

ParamsEllipsoide1
ParamsEllipsoide2
ParamsEllipsoide3
ParamsEllipsoide4

Again we get a super ellipsoid by introducing an exponent on sinus and cosinus:

fireellipsoider

ParamsEllipsoideSuper1
ParamsEllipsoideSuper2
ParamsEllipsoideSuper3
ParamsEllipsoideSuper4

The normal in a point on the surface can be described by:

ParamsEllipsoideNormal1
ParamsEllipsoideNormal2
ParamsEllipsoideNormal3

These formulas are sufficient to calculate, and thus render, a super ellipsoid. We let the two angle parameters run in a double loop and calculate neighboring points and use these to render surface fragments.

Torus

torus0

A torus is seemingly a relatively complicated mathematical figure. We want to find a parametric description of a point p on the torus's surface.

The torus is completely described by the two radii: A main radius R and the radius inside the torus' body r. We want to find two parameters that combine the two rotations that are necessary to identify a point unambiguously, one around the main axis and one around the torus body's axis.

We let w describe the rotation around the torus' main axis, "the hole", and let v describe the rotation around the torus' body. We draw the torus in two projections:

torus

By studying the two projections we can convince ourselves that the point p's coordinates are:

  z=r.sin(v)
  y=(R+r·cos(v))sin(w)
  x=(R+r·cos(v))cos(w)
  

This means that we can describe any point on the torus' surface with the three parametric equations above. This also enables us to limit surfaces on the torus surface with necessary precision, and we are capable of calculating normals on these surfaces (with the cross product). What remains is to find an effective algorithm to draw the torus as a mosaic of surfaces.

References
  1. Piet HeinWikipediano.wikipedia.org/wiki/Piet_Hein14-03-2009
  1. Fibonacci Numbers and the Golden SectionRon Knottwww.mcs.surrey.ac.uk/Personal/R.Knott/Fibonacci/24-05-2009

This material is described in most books on computer graphics.
See also general mathematics books about linear algebra.

Maintainance

B Stenseth, revision 2009
Translated from Norwegian July 2004, Eirin Østvold Blæstrud

(Welcome) Mathematics>Parametric form (Polynoms)