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
Consider a circle with radius 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:
 |
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 and
For , we have our initial circle, while for , the curvature will decrease, tending to .
For , we also want to reduce the represented sector of the circle. This reduction should occur in such a way that .
Let's then take , where .
We can rewrite the circle in terms of the curvature and the angle
As an additional constraint, let's shift our curve along the x-axis as it transforms, ensuring that its point remains in position while the radius varies.
To achieve this, we need to compensate with a translation on the coordinate equal to .
So, our function becomes:
 |
circle morphing into segment, and viceversa |
A computational solution
Now, we want to simplify the function and, if possible, get rid of the value , which becomes computationally inconvenient when .
A practical solution is to use the polynomial given by the Taylor-McLaurin series expansion, in order to approximate the functions and in a neighborhood of .
Let's stop at the fourth degree, for example:
Substituting the obtained values into our function, we get:
This function doesn't present issues for , and it's noticeable how in this case it becomes:
for
This is exactly the line segment passing through , parallel to the y-axis, and with a length of , which is equal to the length of the initial circle.
Transition from Plane to Cylinder
Let's set , then for , we have .
Using a similar approach to what we've seen for the case of the segment-circle, we can parametrize a surface that, varying with , 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 such that we can write .
Thus, we obtain the function:
for and
Where is the radius of the fully enclosed cylinder, its height along the -axis.
Again, we can use Taylor polynomials to replace the sine and cosine functions, getting rid of in the denominator. We'll obtain:
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 such that , where is the minor radius of the desired torus and 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 and , respectively.
for .
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 and by .
Taking the polynomials (here truncated for space reasons) at the desired degree, we can obtain the form:
In this way, we have obtained a parametric function that allows us to represent, varying with and :
- and : our rectangular portion of plane P
- and : our cylinder C
- and : our torus T

Definitions
Let be a function of two real variables in three-dimensional space,
with 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 .
Since is a vector function, it's convenient to define its coordinates with , which are scalar functions such that
This object is also referred to as a parametric surface because the coordinates of each point depend on the parameters .
The support of , namely , is what is commonly referred to as a "surface".
Partial Derivatives
Given a function , we will denote its partial derivatives with respect to the arguments and as and , respectively. In the case of a vector function , we will use the same notation, indicating the vectors of partial derivatives as and .
Simple surfaces
A vector function ,
where ,
is a simple surface if:
- is injective in ;
- ;
- the matrix = has full rank .
The matrix is called the Jacobian matrix of ; its columns are formed by the partial derivatives and .
Normal Vector
Condition (3) in the definition of a regular surface is equivalent to verifying that, for every point in , the vectors and 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 produces a non-zero vector normal to the surface at the given point.
Denoting by the Euclidean norm of a three-dimensional vector , the normal vector to the surface at a point is a unit vector given by the equation
where is the cross product between the two partial derivatives of and is given by , where is the angle between the vectors and .
Curves in
A curve is a vector function
where
such that is continuous, meaning that each of its components is a continuous function on .
A curve is said to be closed if and .
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 with , we can always define a scalar function such that
This is called the curvature and represents the rate of change of the tangent vector of the curve with respect to .
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 .
We can then define the curvature as the reciprocal of the radius of this circle.
Orientable Surface
A regular surface is called orientable if, for every closed curve lying on the surface, parameterized by , it holds that
where is the normal vector of .
Surfaces of revolution
Let be a simple and regular curve on the plane, given by the following parameterization:
,
and such that it does not intersect the -axis.
By rotating this curve around the -axis, we obtain a rotational surface in given by the following parameterization:
:
where , .
Such a surface is called surface of revolution.
Similarly, it is possible to define rotational sheets that have the -axis or the -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 be its curvature function.
,
Then, for analyzing the points of the rotational sheet generated from it, it will be sufficient to evaluate the product:
- Elliptic points are those for which , thus where and or where and .
- Parabolic points, whether they are maxima or minima, are those for which , hence or .
- Hyperbolic points are those for which , thus where and or where and .
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
Plane

Rectangular portion of a horizontal plane, parallel to the plane, defined by the parameterization
where .
The rectangle will thus have a length of , a width of , and an altitude of .
Cylinder

Lateral surface of a cylinder, having the y-axis as its axis of symmetry; it is given by the following parameterization
where .
The cylinder has a radius and a length .
We can also view it as the surface of revolution generated by the curve revolving around the y-axis.
Torus

The torus is a surface given by the parameterization
where .
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 and radius .
Möbius strip

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
where .
The width of the strip is equal to , while is the radius of the circle lying in the plane, identifiable by setting .
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.
 |
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 and , it has been chosen to sample at constant intervals the closed unit square that contains their domain along the two main directions.

By doing so, we obtain samples that are discrete 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.
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
Consider a circle with radius 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:
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 and
For , we have our initial circle, while for , the curvature will decrease, tending to .
For , we also want to reduce the represented sector of the circle. This reduction should occur in such a way that .
Let's then take , where .
We can rewrite the circle in terms of the curvature and the angle
As an additional constraint, let's shift our curve along the x-axis as it transforms, ensuring that its point remains in position while the radius varies.
To achieve this, we need to compensate with a translation on the coordinate equal to .
So, our function becomes:
A computational solution
Now, we want to simplify the function and, if possible, get rid of the value , which becomes computationally inconvenient when .
A practical solution is to use the polynomial given by the Taylor-McLaurin series expansion, in order to approximate the functions and in a neighborhood of .
Let's stop at the fourth degree, for example:
Substituting the obtained values into our function, we get:
This function doesn't present issues for , and it's noticeable how in this case it becomes:
This is exactly the line segment passing through , parallel to the y-axis, and with a length of , which is equal to the length of the initial circle.
Transition from Plane to Cylinder
Let's set , then for , we have .
Using a similar approach to what we've seen for the case of the segment-circle, we can parametrize a surface that, varying with , 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 such that we can write .
Thus, we obtain the function:
for and
Where is the radius of the fully enclosed cylinder, its height along the -axis.
Again, we can use Taylor polynomials to replace the sine and cosine functions, getting rid of in the denominator. We'll obtain:
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 such that , where is the minor radius of the desired torus and 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 and , respectively.
for .
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 and by .
Taking the polynomials (here truncated for space reasons) at the desired degree, we can obtain the form:
In this way, we have obtained a parametric function that allows us to represent, varying with and :
Definitions
Let be a function of two real variables in three-dimensional space,
chosen appropriately so that it is homeomorphic to an open disk.
with
Usually, for practical purposes, the domain is restricted to the unit square given by points .
Since is a vector function, it's convenient to define its coordinates with , which are scalar functions such that
This object is also referred to as a parametric surface because the coordinates of each point depend on the parameters .
The support of , namely , is what is commonly referred to as a "surface".
Partial Derivatives
Given a function , we will denote its partial derivatives with respect to the arguments and as and , respectively. In the case of a vector function , we will use the same notation, indicating the vectors of partial derivatives as and .
Simple surfaces
A vector function , ,
where
is a simple surface if:
The matrix is called the Jacobian matrix of ; its columns are formed by the partial derivatives and .
Normal Vector
Condition (3) in the definition of a regular surface is equivalent to verifying that, for every point in , the vectors and 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 produces a non-zero vector normal to the surface at the given point.
Denoting by the Euclidean norm of a three-dimensional vector , the normal vector to the surface at a point is a unit vector given by the equation
is the cross product between the two partial derivatives of and is given by , where is the angle between the vectors and .
where
Curves in
A curve is a vector function
where
such that is continuous, meaning that each of its components is a continuous function on .
A curve is said to be closed if and .
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 with , we can always define a scalar function such that
.
This is called the curvature and represents the rate of change of the tangent vector of the curve with respect to
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 . of this circle.
We can then define the curvature as the reciprocal of the radius
Orientable Surface
A regular surface is called orientable if, for every closed curve lying on the surface, parameterized by , it holds that
is the normal vector of .
where
Surfaces of revolution
Let be a simple and regular curve on the plane, given by the following parameterization:
,
and such that it does not intersect the -axis.
By rotating this curve around the -axis, we obtain a rotational surface in given by the following parameterization:
where , .
Such a surface is called surface of revolution.
Similarly, it is possible to define rotational sheets that have the -axis or the -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 be its curvature function.
,
Then, for analyzing the points of the rotational sheet generated from it, it will be sufficient to evaluate the product:
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
Plane
Rectangular portion of a horizontal plane, parallel to the plane, defined by the parameterization
where .
The rectangle will thus have a length of , a width of , and an altitude of .
Cylinder
Lateral surface of a cylinder, having the y-axis as its axis of symmetry; it is given by the following parameterization
where .
The cylinder has a radius and a length .
We can also view it as the surface of revolution generated by the curve revolving around the y-axis.
Torus
The torus is a surface given by the parameterization
where .
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 and radius .
Möbius strip
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
where .
The width of the strip is equal to , while is the radius of the circle lying in the plane, identifiable by setting .
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.
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 and , it has been chosen to sample at constant intervals the closed unit square that contains their domain along the two main directions.
By doing so, we obtain samples that are discrete 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.