10.1 Computation of Parametric Functions
Since the parametric representation significantly simplifies the creation of curves, we now intend to define functions that, from the parametric description of a curve, produce an array of points that belong to that curve. To generate these points we will specify the limits of the interval of the parameter t and the progressive increment of its value Δt, producing t0,t0+Δt,t0+2Δt,…,t1. For example, to generate n uniformly spaced points that form a circle of radius r we need to consider the interval [0,2π[ and a angular separation of Δt=2πn. Note that the interval is open at t=2π because the corresponding point coincides with the one at t=0.
To generate values of t uniformly spaced by Δt we can use the function enumerate, defined in section Enumerations, which serves precisely this purpose, so that we can map the parametric function:
map(t -> pol(r, t), enumerate(0, 2*pi, dt))
As usual, we can encapsulate the previous expression with a parametrized function, which we will generalize to allow the specification of the circle center "p":
circle_points(p, r, dt) =
map(t -> p + vpol(r, t), enumerate(0, 2*pi, dt))
Figref{fig:pontosCirc} illustrates the points generated by the circle_points function for different Δt values.
Points along a circle. From left to right, Δt=2π10, Δt=2π20, Δt=2π30, e Δt=2π40.
To see a more practical example, let us consider the Archimedean spiral: a curve described by a point which moves with constant velocity v along a radius that rotates around a center point with constant angular velocity ω. In polar coordinates, the equation of the Archimedean spiral has the form
ρ=vωϕ
or, with α=vω,
ρ=αϕ
which, as can be seen, is a parametric description in terms of ϕ.
To convert the polar representation of the Archimedean spiral to the parametric form, we only have to replace ϕ with t and add an equation in terms of ϕ, that is
{ρ(t)=αtϕ(t)=t
The computation of the coordinates of the Archimedean spiral can now be accomplished by mapping the parametric equation onto the array of values of t:
archimedean_spiral(alpha, t0, t1, dt) =
map(t -> pol(alpha*t, t),
enumerate(t0, t1, dt))
In the previous definition, the Archimedean spiral is positioned at the origin. If we want to make the center of a spiral a parameter p, we only need to operate a simple translation, i.e.:
archimedean_spiral(p, alpha, t0, t1, dt) =
map(t -> p+vpol(alpha*t, t),
enumerate(t0, t1, dt))
This figure shows three Archimedean spirals drawn from the following invocations:
> spline(archimedean_spiral(xy(0, 0), 2.0, 0, 4*pi, 0.1))
Spline(...)
> spline(archimedean_spiral(xy(50, 0), 1.0, 0, 6*pi, 0.1))
Spline(...)
> spline(archimedean_spiral(xy(100, 0), 0.2, 0, 36*pi, 0.1))
Spline(...)
Archimedean spirals. From left to right, the parameters are α=2,t∈[0,4π], α=1,t∈[0,6π], and α=0.2,t∈[0,36π].