THEORY

TRANSITION EFFECT BETWEEN DIFFERENT SURFACES

One of the keypoints of this project is the ability to transform one surface into another in a way that the animation appears natural and minimizes local distortions as much as possible.

The most plausible transitions are those between Plane and Cylinder, and between Cylinder and Torus.

These animations have been created with a common principle, which we can more easily see in the following two-dimensional case.

Transition from a circle to a line segment in R2

Consider a circle with radius R0 and centered at the origin.

Our intention is to unwrap this circle, opening it up and stretching it naturally until it becomes a line segment, as illustrated in the figure:

line to circle
from circle to line

In other words, we want to increase the radius of our circle while discarding a wider arc to preserve the length of the curve.

Let's parameterize the circle using polar coordinates, with ρ>0 and θ(π,π)
c(ρ,θ)=(ρcosθ,ρsinθ).

For ρ=R0, we have our initial circle, while for ρ+, the curvature k=1ρ will decrease, tending to 0.

For ρ>R0, we also want to reduce the represented sector of the circle. This reduction should occur in such a way that θR0ρ.

Let's then take θ=αR0ρ=αR0k, where α(π,π).

We can rewrite the circle in terms of the curvature k and the angle α

c:
{x=ρcosθ=1kcos(αR0k)y=ρsinθ=1ksin(αR0k)

As an additional constraint, let's shift our curve along the x-axis as it transforms, ensuring that its point c(ρ,0) remains in position while the radius varies.

To achieve this, we need to compensate with a translation on the x coordinate equal to R0ρ=R01k.

So, our function becomes:

c:
{x(k,α)=1kcos(αR0k)+R01ky(k,α)=1ksin(αR0k)

line to circle gif
circle morphing into segment, and viceversa

A computational solution

Now, we want to simplify the function and, if possible, get rid of the value 1/k, which becomes computationally inconvenient when k0.

A practical solution is to use the polynomial given by the Taylor-McLaurin series expansion, in order to approximate the functions cos(αR0k) and sin(αR0k) in a neighborhood of θ=αR0k=0.

Let's stop at the fourth degree, for example:

Substituting the obtained values into our function, we get:

c:
{x(k,α)=R0(αR0)22k+(αR0)424k3y(k,α)=αR0(αR0)36k2

This function doesn't present issues for k=0, and it's noticeable how in this case it becomes:

c(0,α)=(R0,αR0) for α(π,π)

This is exactly the line segment passing through (R0,0), parallel to the y-axis, and with a length of 2πR0, which is equal to the length of the initial circle.

Transition from Plane to Cylinder

Let's set t=kR0, then for k[0,1R0], we have t[0,1].

Using a similar approach to what we've seen for the case of the segment-circle, we can parametrize a surface that, varying with t, allows us to transition from a portion of a rectangular plane to a cylinder, and vice versa.

For compactness, let's denote α as the angle in terms of u(0.5,0.5) such that we can write α=2πu(π,π).

Thus, we obtain the function:

Ct(u,v):
{x=R0tsin(tα)y=Wvz=R0t(1tcos(tα))

for t[0,1] and u,v(0.5,0.5)

Where R0>0 is the radius of the fully enclosed cylinder, W>0 its height along the y-axis.

Again, we can use Taylor polynomials to replace the sine and cosine functions, getting rid of t in the denominator. We'll obtain:

C:
{x=R0(αα36t2+α5120t4+o(t6))y=Wvz=R0(1α22t+α424t3α6720t5+o(t7))

Transition from Cylinder to Torus

Building upon the previous case, we now want to allow the lateral surface of the cylinder to "roll up" radially until it closes into a torus.

Let's consider a parameter s[0,1] such that s=kTr0, where r0 is the minor radius of the desired torus and kT is the normal curvature of the torus relative to any plane that radially intersects it. The angles of the major and minor circles of the torus will be expressed as α(u)=2πu and β(v)=2πv, respectively.

Tt,s(u,v):
{x=R0tsin(tα)+r0s(1cos(sβ))sin(tα)y=r0ssin(sβ)z=R0t(1tcos(tα))r0s(1cos(sβ))cos(tα)

for t,s[0,1].

Similarly to what we did for the cylinder C, it's also possible in this case to use Taylor polynomials and get rid of the divisions by t and by s.

Taking the polynomials (here truncated for space reasons) at the desired degree, we can obtain the form:

T:
{x=(R0tr0(β22s+β424s3...))(αα36t2+α5120t4...)y=r0(ββ36s2+β5120s4...)z=R0(1α22t+α424t3...)+r0(β22s+β424s3...)(1α22t2+α424t4...)

In this way, we have obtained a parametric function that allows us to represent, varying with t and s:

plane to cylinder to torus

Definitions

Let s be a function of two real variables in three-dimensional space,
s:AR3,
with AR2 chosen appropriately so that it is homeomorphic to an open disk.

Usually, for practical purposes, the domain is restricted to the unit square given by points (u,v)[0,1]×[0,1].

Since s is a vector function, it's convenient to define its coordinates x(u,v),y(u,v),z(u,v) with (u,v)A, which are scalar functions such that s(u,v)=(x(u,v),y(u,v),z(u,v)).

This object is also referred to as a parametric surface because the coordinates of each point depend on the parameters u,v.

The support of s, namely Img(s), is what is commonly referred to as a "surface".

Partial Derivatives

Given a function f(u,v), we will denote its partial derivatives with respect to the arguments u and v as fu(u,v) and fv(u,v), respectively. In the case of a vector function g(u,v), we will use the same notation, indicating the vectors of partial derivatives as gu and gv.

Simple surfaces

A vector function s=s(u,v),
where s:AR2R3,
is a simple surface if:

  1. s is injective in A;
  2. sC1(A);
  3. the matrix Ds = [xu(u,v)xv(u,v)yu(u,v)yv(u,v)zu(u,v)zv(u,v)] has full rank (u,v)A.

The matrix Ds is called the Jacobian matrix of s; its columns are formed by the partial derivatives su(u,v) and sv(u,v).

Normal Vector

Condition (3) in the definition of a regular surface is equivalent to verifying that, for every point in A, the vectors su and sv are linearly independent. In this case, the two vectors generate a vector plane (tangent to the surface at that point), and therefore, their cross product su×sv produces a non-zero vector normal to the surface at the given point.

Denoting by |v| the Euclidean norm of a three-dimensional vector v, the normal vector to the surface at a point is a unit vector given by the equation
n(u,v)=su×svsu×sv.
where su×sv is the cross product between the two partial derivatives of s and is given by su×sv=susvsinθ, where θ is the angle between the vectors su and sv.

Curves in R3

A curve r is a vector function
r:IRR3
where r(t)=(x(t),y(t),z(t)),tI

such that r is continuous, meaning that each of its components is a continuous function on I.

A curve r:IR3 is said to be closed if I=[a,b] and r(a)=r(b).

Curvature and Osculating Circle of a Curve

Intuitively, at each point of a curve, curvature measures how much the curve is bent, i.e., how much the curve deviates locally from the direction given by the tangent at that point.

Given a regular curve r(t)=(x(t),y(t),z(t)) with tI, we can always define a scalar function k:IRR such that
k(t)=r(t)×r(t)r(t)3
This is called the curvature and represents the rate of change of the tangent vector of the curve with respect to t.

One way to visualize curvature is to use the osculating circle, which, informally defined, is the circle that best approximates the curve at a given point r(t).
We can then define the curvature as the reciprocal of the radius ρ of this circle.
k(t)=1ρ(t)

Orientable Surface

A regular surface S is called orientable if, for every closed curve lying on the surface, parameterized by r:[a,b]S, it holds that
limtbn(r(t))=n(r(a))
where n is the normal vector of S.

Surfaces of revolution

Let γ be a simple and regular curve on the xz plane, given by the following parameterization:

γ(t):
{x=f(t)z=h(t)
, t(a,b)

and such that it does not intersect the z-axis.

By rotating this curve around the z-axis, we obtain a rotational surface in R3 given by the following parameterization:

S(t,θ) :
{x=f(t)cos(θ)y=f(t)sin(θ)z=h(t)

where θ(0,2π) , t(a,b).

Such a surface is called surface of revolution.

Similarly, it is possible to define rotational sheets that have the x-axis or the y-axis as the axis of symmetry.

Curvature of a Surface of Revolution

The study of surfaces of revolution is facilitated by the fact that they possess radial symmetry. Indeed, it is sufficient to consider exclusively the behavior of the curve being rotated, which will be precisely a normal section curve for the generated surface.

Let γ be the curve defined below, and let k(t) be its curvature function.

γ(t):
{x=f(t)z=h(t)
, t[a,b]

Then, for analyzing the points of the rotational sheet generated from it, it will be sufficient to evaluate the product:
K=k(t)h(t)

Surfaces implemented in the project

The following are the reference parameterizations used for the various surfaces implemented in the project.

Since one of the goals was to create transition animations from one surface to another while keeping the connectivity of the polygonal mesh unchanged and only varying the positions of the vertices, the same parameter domain was chosen for all surfaces, which will not be repeated.

Therefore, please note that, for each surface, every point (u,v)(0.5,0.5)×(0.5,0.5)

Plane

Plane P

Rectangular portion of a horizontal plane, parallel to the xy plane, defined by the parameterization

P:
{x=Luy=Wvz=Q

where L,W,QR.

The rectangle will thus have a length of L, a width of W, and an altitude of Q.

Cylinder

Cylinder C

Lateral surface of a cylinder, having the y-axis as its axis of symmetry; it is given by the following parameterization

C:
{x=ρsin(2πu)y=Wvz=ρcos(2πu)

where W,ρ>0.

The cylinder has a radius ρ and a length W.

We can also view it as the surface of revolution generated by the curve r(v)=(ρ,Wv,0) revolving around the y-axis.

Torus

Torus T

The torus is a surface given by the parameterization

T:
{x=(τcos(2πv)+ρ)sin(2πu)y=τsin(2πv)z=(τcos(2πv)+ρ)cos(2πu)

where 0<τ<ρ.

In this form, the torus has an axis of symmetry coinciding with the y-axis and can be seen as the surface obtained by the complete rotation around this axis of a circle lying in the xy-plane, with center (ρ,0,0) and radius τ.

Möbius strip

Mobius band M

The Möbius strip is a non-orientable surface, consisting of a single face and a single edge; here we will use the following parameterization

M:
{x=(Wvsin(πu)+ρ)sin(2πu)y=Wvcos(πu)z=(Wvsin(πu)+ρ)cos(2πu)

where W,ρ>0.

The width of the strip is equal to W, while ρ is the radius of the circle lying in the xz plane, identifiable by setting v=0.

Triangular Meshes

In general terms, a mesh is a set of vertices, edges, and faces that describe a polygonal object in space.

In our case, we will only consider triangular meshes, which are three-dimensional objects whose vertices are connected in groups of three, forming triangular faces. The order of the triple of vertices determines the direction of traversal of the perimeter. This direction determines the direction of the normal vector to the triangle's surface according to the right-hand rule.

two triangles indices
a mesh having four vertices and two triangles

Surface Sampling

To represent a surface in mesh form, it's necessary to choose a discrete sampling of its points, converting them into vertices.

Since the surfaces (plane P, cylinder C, torus T, Möbius strip M) all share the same parameters u and v, it has been chosen to sample at constant intervals the closed unit square that contains their domain (u,v)[0.5,0.5]×[0.5,0.5] along the two main directions.

uv grid to surfaces

By doing so, we obtain samples that are discrete (u,v) coordinates. These pairs will then be evaluated by the parametric function describing the surfaces, which will convert them into three-dimensional positions and assign them to the vertices of the triangular mesh.

Applying the transition effects from one surface to another, the positions of the vertices in space will vary, but the connectivity of the mesh will remain unchanged.

Unit Normal Vectors

Unit normal vectors are unit-length vectors perpendicular to the surface of a mesh at each point. Due to this property, they are used for computing lighting in 3D renderings and for solving problems related to object intersections.
For the project's purposes, unit normal vectors were also used to determine the correct orientation of the player while moving on the mesh, keeping them perpendicular to the surface at the player's location.

To derive the normal of a triangular face, it's sufficient to calculate and then normalize the cross product of two of its edges.
Note that the chosen order for the factors matters as it determines the direction of the normal (inward or outward from the triangle) according to the right-hand rule.

To derive the normal of a vertex of the mesh, we can then calculate the normalized sum of the normals of all triangles sharing that vertex.