I\'m writing my own uv editor for a tool of mine, and I\'m trying to incorporate as many algorithms as I can for projections. I need to take an arbitrary mesh, and make uv
Tri-planar
Forget about it: it is not a projection algorithm (an algorithm that gives you UV coordinates), and there is no way you can get UV coordinates out of it. It is a rendering algorithm that gives you a color obtained by blending what color you would obtained using each X-Y-Z planar projections separately.
Cylindrincal, Spherical
Like planar, those are very simple projection algorithms that give you a UV value directly from a XYZ value, without taking into account the connectivity with other vertices.
Of course, you can switch the roles of X, Y and Z to project using a different axis, or perform some translation/rotation/scaling to have more control (the same way that you can control the size and orientation of the plane you use for the planar projection).
Cubic
First, you need to determine to which "projection face" you assign each face of your mesh. I name the projection faces X, -X, Y, -Y, Z and -Z as in the figure below (where I assume the X, Y, and Z axis have respectively the colors Red, Green, and Blue):
For this, you simply find which coordinate of the normal (nx, ny, nz) has the greatest absolute value, and assign it to the face corresponding to this axis and sign. For instance:
Then, once you know to which projection face you assign every face of your mesh, you can apply the corresponding planar projection to the vertices around this face to get a temporary value (u_temp, v_temp) ∈ [0,1] x [0,1].
The next step is to transform this value uv_temp ∈ [0,1] x [0,1] into a value uv included in the smaller square as represented in the image A above. For instance, if you applied the projection "X", then you want uv ∈ [2/3, 3/3] x [2/4, 3/4], then you would do:
u = 2./3. + u_temp/3.;
v = 2./4. + v_temp/4.;
Finally, the last step is not to forget to duplicate the UV vertices that belong to two faces with different planar projection (the borders between the different colors on the picture). Indeed, some vertices of the mesh can (and should in most cases) be split in several positions in the UV map to give decent results.
You should start from the siggraph course Mesh Parameterization: Theory and Practice then look into the cited papers for details on the algorithms you're implementing
Cubic Mapping
The standard method of doing this, based on a (rx, ry, rz) vector is to first look up some values in a table. These values are used for the (s,t) (or (u,v)) texture coordinate per vertex.
First find the Reflected Vector R = 2(N dot V)N - V, Where V = Vertex, N = Normal , R Reflected Vector(rx,ry,rz)
major axis
direction sc tc ma
--------- --- --- --
+rx -rz -ry rx
-rx +rz -ry rx
+ry +rx +rz ry
-ry +rx -rz ry
+rz +rx -ry rz
-rz -rx -ry rz
Once sc, tc, and ma has been assigned values, (s,t) coordinates for that face can be calculated with the following formulas.
if((rx >= ry) && (rx >= rz))
{
sc = -rz;
tc = -ry;
ma = fabs(rx); //absolute value
s = ((sc/ma) + 1) / 2;
t = ((tc/ma) + 1) / 2;
cout << "+rx (" << s << "," << t << ")" << endl;
}
if((rx <= ry) && (rx <= rz))
{
sc = +rz;
tc = -ry;
ma = fabs(rx);
s = ((sc/ma) + 1) / 2;
t = ((tc/ma) + 1) / 2;
cout << "-rx (" << s << "," << t << ")" << endl;
}
if((ry >= rz) && (ry >= rx))
{
sc = +rx;
tc = +rz;
ma = fabs(ry);
s = ((sc/ma) + 1) / 2;
t = ((tc/ma) + 1) / 2;
cout << "+ry (" << s << "," << t << ")" << endl;
}
if((ry <= rz) && (ry <= rx))
{
sc = +rx;
tc = -rz;
ma = fabs(ry);
s = ((sc/ma) + 1) / 2;
t = ((tc/ma) + 1) / 2;
cout << "-ry (" << s << "," << t << ")" << endl;
}
if((rz >= ry) && (rz >= rx))
{
sc = +rx;
tc = -ry;
ma = fabs(rz);
s = ((sc/ma) + 1) / 2;
t = ((tc/ma) + 1) / 2;
cout << "+rz (" << s << "," << t << ")" << endl;
}
if((rz <= ry) && (rz <= rx))
{
sc = -rx;
tc = -ry;
ma = fabs(rz);
s = ((sc/ma) + 1) / 2;
t = ((tc/ma) + 1) / 2;
cout << "-rz (" << s << "," << t << ")" << endl;
}
Reference http://www.unc.edu/~zimmons/cs238/maps/cubeind.html
Spherical, Cubic, and Parabolic Environment Mappings http://www.unc.edu/~zimmons/cs238/maps/environment.html
OP would you please share your Least Squares Conformal Mapping algorithm for generating UV coordinates. Thank you.