WoW:SetTexCoord Transformations: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
m (Move page script moved page SetTexCoord Transformations to SetTexCoord Transformations without leaving a redirect)
 
(17 intermediate revisions by 14 users not shown)
Line 1: Line 1:
{{tocright}}
{{uitech}}
The SetTexCoord method in WoW's Texture API can be used for some fairly complex display tasks, including drawing bits of circles, rotating images on screen, etc.  Unless one has experience in computer graphics programming, the way in which this can be used might not be evident, so this document hopes to explain how Textures work and how you can use them.
The SetTexCoord method in WoW's Texture API can be used for some fairly complex display tasks, including drawing bits of circles, rotating images on screen, etc.  Unless one has experience in computer graphics programming, the way in which this can be used might not be evident, so this document hopes to explain how Textures work and how you can use them.


= Basic Concepts =
== Basic concepts ==
Before wading too far into the Texture waters, it's best to begin with some basic concepts:
Before wading too far into the Texture waters, it's best to begin with some basic concepts:


== The Screen ==
=== Screen coordinates ===
The screen is used to refer to what the user sees, it may go by various different names in some graphics systems (canvas, surface, etc), but here we'll just call it the screen.  The term <b>Screen Coordinate</b> is used to specify a point on the screen (In WoW the origin is in the bottom left hand corner).
The screen refers to what the player sees. It may go by various different names in some graphics systems (canvas, surface, etc.) but here we'll just call it the screen.  The term ''Screen Coordinates'' is used to specify a point in the screen. In World of Warcraft the origin of the screen coordinates is at the lower left corner.


== Texture Frame Elements ==
=== Texture coordinates ===
In order to display all part of an image, we use a Texture frame element, which appears as a rectangular area on the screen with vertical and horizontal edges, just like any other Frame. A Texture frame element can have an arbitrary location, size, and scale. Within the rectangle of the Texture, we'll use the term <b>Texture Frame Coordinate</b> to refer to the location within that rectangle where (0,0) is the bottom left corner, (1,0) is the bottom right corner, (0,1) is the top left corner, and (1,1) is the top right corner. Texture will always have an initial capital, for consistency with the element name in the API. Each screen coordinate within the bounds of the Texture on screen can be mapped into a Texture frame coordinate within the box from (0,0) to (1,1).
A Texture frame is used to display all or part of an image. It has an arbitrary location, size, and scale, and appears as a rectangular area on the screen with vertical and horizontal edges, just like any other frame. We'll use the term ''Texture Coordinates'' to refer to a location within the frame, where (0,0) is the lower left corner, (1,0) is the lower right corner, (0,1) is the upper left corner, and (1,1) is the upper right corner. "Texture" will always have an initial capital, for consistency with the name of the frame type in the API. Each screen coordinate within the bounds of the Texture on screen can be mapped into a Texture frame coordinate within the box from (0,0) to (1,1).


== The Image ==
=== Image coordinates ===
Texture frame elements display images, these are generally loaded from files and are specified with a path. The WoW UI engine handles various different sizes of images, as long as each side is a power of 2 (64x64, 256x256, 512x128, etc). Within an image, we'll use the term <b>Image Coordinate</b> to refer to the location within the contents of the image. The corners are (0,0) for the bottom left, (1,0) for the bottom right, (0,1) for the top left, and (1,1) for the top right. (Aside: Must verify I have these the right way around - [[User:Flickering|Flickering]] 12:13, 13 Jan 2006 (EST))
Texture frame elements contain images. These are generally loaded from image files located by file paths. The World of Warcraft user interface engine handles different sizes of images: the length of each side is always a power of two (64 x 64, 256 x 256, 512 x 128, etc.). We will use the term ''Image Coordinates'' to refer to locations within the contents of the image rectangle. The corners are (0,0) for the upper left, (1,0) for the upper right, (0,1) for the lower left, and (1,1) for the lower right. '''Notice that the image origin is at the <u>upper left</u>, whereas screen and texture frame origins are at the <u>lower left</u>.'''


While image coordinate box from (0,0) to (1,1) contains the whole image as it appears in its source file, the image logically extends to infinity in each direction, by repeating the edge pixel of the image file. So, if your image has a left edge which is entirely blue pixels, then there would be blue at (x, 0.5) for all x &lt;= 0. Similarly, if the image has a top edge that is transparent, then you'll get transparency at (0.5, y) for all y &gt;= 1.
It is quite possible that a pixel logically outside the image rectangle is visible in the texture frame. To allow for this, the coordinate box from (0,0) to (1,1) containing the entire image is imagined to be extended over an infinite canvas by repeating indefinitely the first and last pixels on each row and column. This will usually give the desired effect, as the pixels at the edge are generally set to the image background colour.


== An Analogy ==
=== An analogy ===
Think of the image as a sheet of infinitely flexible rubber, with a faint set of grid lines rules on it. There's an origin, and coordinates, and the contents of the image file is printed onto the rubber between (0,0) an (1,1) and extends as far as you want in each direction.
Think of the image as a sheet of infinitely flexible rubber, with a faint set of grid lines rules on it. There's an origin, and coordinates, and the contents of the image file is printed onto the rubber between (0,0) an (1,1) and extends as far as you want in each direction.


Think of the Texture frame element as a rigid rectangular frame, with an attachment point at each of the four corners. The rubber image sheet is attached to each corner of the frame, and then stretches between these points. Anything outside the edge of the frame can be ignored, what's within the edges of the frame is what you see on screen.
Think of the Texture frame as a rigid rectangular frame, with an attachment point at each of the four corners. The rubber image sheet is attached to each corner of the frame, and stretches between these points. Anything outside the edge of the frame can be ignored; what's within the edges of the frame is what you see on screen.


The SetTexCoord method is used to provide the image coordinates of each of these four corner points.
The SetTexCoord method is used to provide the image coordinates of each of these four corner points.


=Coordinate Transformations=
==Coordinate transformations==
==Overview==
The way in which the image coordinates map to Texture frame coordinates, and then onto Screen Coordinates (or vice versa) is through a series of <b>Affine Transformations</b>, these are transformations which preserve linearity (points which lay on a line before the transformation, continue to lay on a line after it), and distance ratios (the ratio of distance between two pairs of points on a line before the transformation remain the same afterwards). In the 2D world affine transformations are any combination of:


* Transformation (Moving things relative to the origin)
The way in which the image coordinates map to Texture frame coordinates, and then onto Screen Coordinates (or vice versa) is through a series of ''Affine Transformations''. These are transformations which preserve linearity (points which lay on a line before the transformation, continue to lay on a line after it) and distance ratios (the ratio of distance between two pairs of points on a line before the transformation remain the same afterwards). In the 2D world affine transformations are any combination of:
* Rotation (Rotating around the origin)
* Scaling (Multiplying one or both axes by a constant factor)
* Shearing (Offsetting points parallel to a line, where the offset is proportional to the perpendicular distance from that line)


==Textures and the Screen==
* Translation (moving all points in the image the same distance and direction)
For the Texture frame coordinate to Screen coordinate mapping there's a simple transformation and scaling process, since we cannot shear or rotate on-screen frames, but for the mapping from image coordinates to the Texture frame, the full set are available.
* Rotation (rotating all points around an origin)
* Scaling (enlarging or reducing distances by the same factor in all directions)
* Shearing (offsetting points parallel to a line, where the offset is proportional to the perpendicular distance from that line)
 
===Textures and the screen===
For the Texture frame coordinate to Screen coordinate mapping there's a simple translation and scaling process, since we cannot shear or rotate on-screen frames, but for the mapping from image coordinates to the Texture frame, the full set are available.


Logically the process by which a point is transformed from image space to a point on screen can be represented by two transformations T, the transformation from the image to the Texture, and then S, the transformation from the Texture to the screen (I'll go into the math later):
Logically the process by which a point is transformed from image space to a point on screen can be represented by two transformations T, the transformation from the image to the Texture, and then S, the transformation from the Texture to the screen (I'll go into the math later):


Texture coordinate from image coordinate: t = i * T
Texture coordinate from image coordinate: t = T * i
Screen coordinate from Texture coordinate: s = t * S
Screen coordinate from Texture coordinate: s = S * t


The S transformation is implied by the anchors, size, and scale of the Texture frame element (and the Frame it's contained within).
The S transformation is implied by the anchors, size, and scale of the Texture frame element (and the Frame it's contained within).


==T, and its inverse==
===T, and its inverse===
Most of the time you are most readily able to provide T, the transformation between the image and the Texture, because you want to achieve a specific thing (Say, rotate the image 30 degrees and move it to the left).  However SetTexCoord wants image coordinates as its parameters, for the four corner Texture coordinates. In order to do this, we need to create T', the inverse of T, such that given t = i * T, the inverse can be applied to get i = t * T'.
Most of the time you are most readily able to provide T, the transformation between the image and the Texture, because you want to achieve a specific thing (Say, rotate the image 30 degrees and move it to the left).  However SetTexCoord wants image coordinates as its parameters, for the four corner Texture coordinates. In order to do this, we need to create T', the inverse of T, such that given t = T * i, the inverse can be applied to get i = T' * t.


With the inverse in hand, we can determine what the image coordinates are going to be by passing in the four corner Texture coordinate values (0,1) (0,0) (1,1) (1,0) in turn and passing the resulting set of coordinates into SetTexCoord as the UL, LL, UR, and LR image coordinates.
With the inverse in hand, we can determine what the image coordinates are going to be by passing in the four corner Texture coordinate values (0,1) (0,0) (1,1) (1,0) in turn and passing the resulting set of coordinates into SetTexCoord as the UL, LL, UR, and LR image coordinates.


=The Math=
==The math==
==Overview of Matrix Multiplication==
===Matrix multiplication===
 
(Forgive the somewhat lame formatting)


Matrix multiplication is written as follows, for the expression b = a * T, where b is (X,Y,Z) and a is (x,y,z) you'd have;
Matrix multiplication is written as follows, for the expression b = Ta, where b is (X,Y,Z) and a is (x,y,z) you'd have;


{|
<math>
|(X||Y||Z)||=||(x||y||z)||*||(A||D||G)
\begin{pmatrix}
|-
X\\
|  || ||  || ||  || ||  || ||(B||E||H)
Y\\
|-
Z
|  || ||  || ||  || ||  || ||(C||F||I)
\end{pmatrix}
|}
=
\begin{pmatrix}
A&B&C\\
D&E&F\\
G&H&I
\end{pmatrix}
\times
\begin{pmatrix}
x\\
y\\
z
\end{pmatrix}
</math>


Which is then calculated as follows:
Which is then calculated as follows:
Line 67: Line 77:
  Z = Gx + Hy + Iz
  Z = Gx + Hy + Iz


==Affine Transformations as Matrices==
===Affine transformations as matrices===
You'll note my matrix example was a 3 dimensional coordinate, and a 3 by 3 matrix, this is because a 2 dimensional matrix isn't enough to represent an affine transformation by itself, because it cannot represent translation. The trick is to add a 'dummy' z coordinate, which ALWAYS has the value 1, and then use the following matrices:
You'll note my matrix example was a 3 dimensional coordinate, and a 3 by 3 matrix, this is because a 2 dimensional matrix isn't enough to represent an affine transformation by itself, because it cannot represent translation. The trick is to add a 'dummy' z coordinate, which ALWAYS has the value 1, and then use the following matrices:


{|
<math>
|(X||Y||1)||=||(x||y||1)||*||(A||D||0)
\begin{pmatrix}
|-
X\\
|  || ||  || ||  || ||  || ||(B||E||0)
Y\\
|-
1
|  || ||  || ||  || ||  || ||(C||F||1)
\end{pmatrix}
|}
=
\begin{pmatrix}
A&B&C\\
D&E&F\\
0&0&1
\end{pmatrix}
\times
\begin{pmatrix}
x\\
y\\
1
\end{pmatrix}
</math>


Which then yields:
Which then yields:
Line 85: Line 107:
In this case, A,B,D,E represent scaling, shearing, and rotation, and C,F represent translation. Matrices of this form also multiply together properly, preserving the last row in the correct format.
In this case, A,B,D,E represent scaling, shearing, and rotation, and C,F represent translation. Matrices of this form also multiply together properly, preserving the last row in the correct format.


==SetTexCoord Math with Matrices==
===SetTexCoord math with matrices===
===T as a Matrix===
====T as a matrix====
The first step in figuring out your SetTexCoord parameters is to represent your transformation as a matrix. This wont be covered here, but there are plenty of tutorials online concerning the mathematics of matrix transformations.  You'll end up with a matrix with 6 variables, in the form shown above, and we'll use those for this example.
The first step in figuring out your SetTexCoord parameters is to represent your transformation as a matrix. This wont be covered here, but there are plenty of tutorials online concerning the mathematics of matrix transformations.  You'll end up with a matrix with 6 variables, in the form shown above, and we'll use those for this example.


===Inverting T===
====Inverting T====
Not all matrices can be inverted, but for this case with the affine restricted 3x3 matrix, any matrix for which (AE-BD) is not zero has an inverse (This value is the 'determinant' of the matrix, and represents the change in area that a shape undergoes when transformed, you cannot reverse a matrix with a zero determinant because it represents a collapse into a single point or line)
Not all matrices can be inverted, but for this case with the affine restricted 3x3 matrix, any matrix for which (AE-BD) is not zero has an inverse (This value is the 'determinant' of the matrix, and represents the change in area that a shape undergoes when transformed, you cannot reverse a matrix with a zero determinant because it represents a collapse into a single point or line)


Line 99: Line 121:


{|
{|
|(||E/det||-B/det||0||)
|(||E/det||-B/det||(BF-CE)/det||)
|-
|-
|(||-D/det||A/det||0||)
|(||-D/det||A/det||-(AF-CD)/det||)
|-
|-
|(||(BF-CE)/det||-(AF-CD)/det||1||)
|(||0||0||1||)
|}
|}


===Final SetTexCoord Results===
====Final SetTexCoord results====
To calculate the final image coordinates, we apply T' to each of the corner Texture coordinates:
To calculate the final image coordinates, we apply T' to each of the corner Texture coordinates:


UL Texture Coordinates (X,Y) = (0,1)
UL Texture Coordinates (X,Y) = (0,0)
  ULx = (-B + BF - CE) / det = (-(1-F)B - CE) / det
ULx = ( BF - CE) / det
  ULy = ( A - AF + CD) / det = ( (1-F)A + CD) / det
ULy = (-AF + CD) / det
 
LL Texture Coordinates (X,Y) = (0,1)
  LLx = (-B + BF - CE) / det = (-(1-F)B - CE) / det
  LLy = ( A - AF + CD) / det = ( (1-F)A + CD) / det
 
UR Texture Coordinates (X,Y) = (1,0)
URx = ( E + BF - CE) / det = ( BF + (1-C)E ) / det
URy = (-D - AF + CD) / det = ( AF - (1-C)D ) / det
 
LR Texture Coordinates (X,Y) = (1,1)
LRx = ( E - B + BF - CE) / det = ( (1-C)E - (1-F)B ) / det
LRy = (-D + A - AF + CD) / det = (-(1-C)D + (1-F)A ) / det
 
====Example function====
The function below will take a texture t, and a matrix with 6 variables as its arguments, and apply the transformation to the texture using the SetTexCoord calculations above.
function setCoords(t, A, B, C, D, E, F)
local det = A*E - B*D;
local ULx, ULy, LLx, LLy, URx, URy, LRx, LRy;
ULx, ULy = ( B*F - C*E ) / det, ( -(A*F) + C*D ) / det;
LLx, LLy = ( -B + B*F - C*E ) / det, ( A - A*F + C*D ) / det;
URx, URy = ( E + B*F - C*E ) / det, ( -D - A*F + C*D ) / det;
LRx, LRy = ( E - B + B*F - C*E ) / det, ( -D + A -(A*F) + C*D ) / det;
t:SetTexCoord(ULx, ULy, LLx, LLy, URx, URy, LRx, LRy);
end
Applying transformations is then rather simple. To apply a rotation to the texture, we can use the rotation matrix below (assuming angle a):
{|
|(||cos(a)||sin(a)||1||)
|-
|(||-sin(a)||cos(a)||1||)
|}
Applying a rotation of 90 degrees can then be done by using:
local cos, sin = math.cos, math.sin;
local angle = math.rad(90);
setCoords(texture, cos(angle), sin(angle), 1, -sin(angle), cos(angle), 1);
 
===Simple rotation of square textures around the center===
While the above section about matrix manipulation gives a lot of flexibility, most often much simpler math suffice.
Here's an example of rotating a square texture around its center with an arbitrary angle:
local s2 = sqrt(2);
local cos, sin, rad = math.cos, math.sin, math.rad;
local function CalculateCorner(angle)
local r = rad(angle);
return 0.5 + cos(r) / s2, 0.5 + sin(r) / s2;
end
local function RotateTexture(texture, angle)
local LRx, LRy = CalculateCorner(angle + 45);
local LLx, LLy = CalculateCorner(angle + 135);
local ULx, ULy = CalculateCorner(angle + 225);
local URx, URy = CalculateCorner(angle - 45);
texture:SetTexCoord(ULx, ULy, LLx, LLy, URx, URy, LRx, LRy);
end
 
===Even simpler rotation of textures about the center===
function RotateTexture(self, degrees)
local angle = math.rad(degrees)
local cos, sin = math.cos(angle), math.sin(angle)
self:SetTexCoord((sin - cos), -(cos + sin), -cos, -sin, sin, -cos, 0, 0)
end
 
===Simple rotation of textures about their own center===
It may just have been a lack of understanding on my part but the above methods did not work for me; Or at least did not meet my needs.
 
To be explicit, I wanted to be able to rotate a texture about its own center.
 
In other words, I wanted the texture to spin in place, and not rotate or move the texture about the center of the UI, or its parent's center.
 
The following code gives a rough idea of how to animate a texture to make it spin.
 
But the basic method can be seen in the :SetTexCoord method :
 
local angleInc = 0.25
function myOnUpdate(self, elapsed)
  self.timer = self.timer + elapsed;
  if ( self.timer > 0.05 ) then
  self.hAngle = self.hAngle - angleInc;
  self.s = sin(self.hAngle);
  self.c = cos(self.hAngle);
  miniNote:SetTexCoord( 0.5-self.s, 0.5+self.c,
  0.5+self.c, 0.5+self.s,
  0.5-self.c, 0.5-self.s,
  0.5+self.s, 0.5-self.c);
  self.timer = 0;
  end
end
 
angleInc has been precalculated as a Radians value - the larger it is, the faster the spin.
 
Or reduce the self.timer threshold to make a smoother rotation.
 
 
radians = (pi/180) * degrees


LL Texture Coordinates (X,Y) = (0,0)
===Rotation of textures about any point with any aspect===
LLx = ( BF - CE) / det
This function caters to all your rotation needs.
LLy = (-AF + CD) / det


UR Texture Coordinates (X,Y) = (1,1)
function RotateCoordPair (x,y,ox,oy,a,asp)
URx = ( E - B + BF - CE) / det = ( (1-C)E - (1-F)B ) / det
y=y/asp
URy = (-D + A - AF + CD) / det = (-(1-C)D + (1-F)A ) / det
oy=oy/asp
return ox + (x-ox)*math.cos(a) - (y-oy)*math.sin(a),
(oy + (y-oy)*math.cos(a) + (x-ox)*math.sin(a))*asp
end


LR Texture Coordinates (X,Y) = (1,0)
And use it like this:
LRx = ( E + BF - CE) / det = ( BF + (1-C)E ) / det
LRy = (-D - AF + CD) / det = ( AF - (1-C)D ) / det


[[Category:World of Warcraft API]]
coords={tl={x=0,y=0},
bl={x=0,y=1},
tr={x=1,y=0},
br={x=1,y=1}}
origin={x=0.5,y=1.0}
aspect=image_width/image_height
angle=3.14159/2
texture:SetTexCoord(
RotateCoordPair(coords.tl.x,coords.tl.y,origin.x,origin.y,angle,aspect),
RotateCoordPair(coords.bl.x,coords.bl.y,origin.x,origin.y,angle,aspect),
RotateCoordPair(coords.tr.x,coords.tr.y,origin.x,origin.y,angle,aspect),
RotateCoordPair(coords.br.x,coords.br.y,origin.x,origin.y,angle,aspect)
)

Latest revision as of 04:48, 15 August 2023

The SetTexCoord method in WoW's Texture API can be used for some fairly complex display tasks, including drawing bits of circles, rotating images on screen, etc. Unless one has experience in computer graphics programming, the way in which this can be used might not be evident, so this document hopes to explain how Textures work and how you can use them.

Basic concepts[edit]

Before wading too far into the Texture waters, it's best to begin with some basic concepts:

Screen coordinates[edit]

The screen refers to what the player sees. It may go by various different names in some graphics systems (canvas, surface, etc.) but here we'll just call it the screen. The term Screen Coordinates is used to specify a point in the screen. In World of Warcraft the origin of the screen coordinates is at the lower left corner.

Texture coordinates[edit]

A Texture frame is used to display all or part of an image. It has an arbitrary location, size, and scale, and appears as a rectangular area on the screen with vertical and horizontal edges, just like any other frame. We'll use the term Texture Coordinates to refer to a location within the frame, where (0,0) is the lower left corner, (1,0) is the lower right corner, (0,1) is the upper left corner, and (1,1) is the upper right corner. "Texture" will always have an initial capital, for consistency with the name of the frame type in the API. Each screen coordinate within the bounds of the Texture on screen can be mapped into a Texture frame coordinate within the box from (0,0) to (1,1).

Image coordinates[edit]

Texture frame elements contain images. These are generally loaded from image files located by file paths. The World of Warcraft user interface engine handles different sizes of images: the length of each side is always a power of two (64 x 64, 256 x 256, 512 x 128, etc.). We will use the term Image Coordinates to refer to locations within the contents of the image rectangle. The corners are (0,0) for the upper left, (1,0) for the upper right, (0,1) for the lower left, and (1,1) for the lower right. Notice that the image origin is at the upper left, whereas screen and texture frame origins are at the lower left.

It is quite possible that a pixel logically outside the image rectangle is visible in the texture frame. To allow for this, the coordinate box from (0,0) to (1,1) containing the entire image is imagined to be extended over an infinite canvas by repeating indefinitely the first and last pixels on each row and column. This will usually give the desired effect, as the pixels at the edge are generally set to the image background colour.

An analogy[edit]

Think of the image as a sheet of infinitely flexible rubber, with a faint set of grid lines rules on it. There's an origin, and coordinates, and the contents of the image file is printed onto the rubber between (0,0) an (1,1) and extends as far as you want in each direction.

Think of the Texture frame as a rigid rectangular frame, with an attachment point at each of the four corners. The rubber image sheet is attached to each corner of the frame, and stretches between these points. Anything outside the edge of the frame can be ignored; what's within the edges of the frame is what you see on screen.

The SetTexCoord method is used to provide the image coordinates of each of these four corner points.

Coordinate transformations[edit]

The way in which the image coordinates map to Texture frame coordinates, and then onto Screen Coordinates (or vice versa) is through a series of Affine Transformations. These are transformations which preserve linearity (points which lay on a line before the transformation, continue to lay on a line after it) and distance ratios (the ratio of distance between two pairs of points on a line before the transformation remain the same afterwards). In the 2D world affine transformations are any combination of:

  • Translation (moving all points in the image the same distance and direction)
  • Rotation (rotating all points around an origin)
  • Scaling (enlarging or reducing distances by the same factor in all directions)
  • Shearing (offsetting points parallel to a line, where the offset is proportional to the perpendicular distance from that line)

Textures and the screen[edit]

For the Texture frame coordinate to Screen coordinate mapping there's a simple translation and scaling process, since we cannot shear or rotate on-screen frames, but for the mapping from image coordinates to the Texture frame, the full set are available.

Logically the process by which a point is transformed from image space to a point on screen can be represented by two transformations T, the transformation from the image to the Texture, and then S, the transformation from the Texture to the screen (I'll go into the math later):

Texture coordinate from image coordinate: t = T * i Screen coordinate from Texture coordinate: s = S * t

The S transformation is implied by the anchors, size, and scale of the Texture frame element (and the Frame it's contained within).

T, and its inverse[edit]

Most of the time you are most readily able to provide T, the transformation between the image and the Texture, because you want to achieve a specific thing (Say, rotate the image 30 degrees and move it to the left). However SetTexCoord wants image coordinates as its parameters, for the four corner Texture coordinates. In order to do this, we need to create T', the inverse of T, such that given t = T * i, the inverse can be applied to get i = T' * t.

With the inverse in hand, we can determine what the image coordinates are going to be by passing in the four corner Texture coordinate values (0,1) (0,0) (1,1) (1,0) in turn and passing the resulting set of coordinates into SetTexCoord as the UL, LL, UR, and LR image coordinates.

The math[edit]

Matrix multiplication[edit]

Matrix multiplication is written as follows, for the expression b = Ta, where b is (X,Y,Z) and a is (x,y,z) you'd have;

<math> \begin{pmatrix} X\\ Y\\ Z \end{pmatrix} = \begin{pmatrix} A&B&C\\ D&E&F\\ G&H&I \end{pmatrix} \times \begin{pmatrix} x\\ y\\ z \end{pmatrix} </math>

Which is then calculated as follows:

X = Ax + By + Cz
Y = Dx + Ey + Fz
Z = Gx + Hy + Iz

Affine transformations as matrices[edit]

You'll note my matrix example was a 3 dimensional coordinate, and a 3 by 3 matrix, this is because a 2 dimensional matrix isn't enough to represent an affine transformation by itself, because it cannot represent translation. The trick is to add a 'dummy' z coordinate, which ALWAYS has the value 1, and then use the following matrices:

<math> \begin{pmatrix} X\\ Y\\ 1 \end{pmatrix} = \begin{pmatrix} A&B&C\\ D&E&F\\ 0&0&1 \end{pmatrix} \times \begin{pmatrix} x\\ y\\ 1 \end{pmatrix} </math>

Which then yields:

X = Ax + By + C
Y = Dx + Ey + F
1 = 1

In this case, A,B,D,E represent scaling, shearing, and rotation, and C,F represent translation. Matrices of this form also multiply together properly, preserving the last row in the correct format.

SetTexCoord math with matrices[edit]

T as a matrix[edit]

The first step in figuring out your SetTexCoord parameters is to represent your transformation as a matrix. This wont be covered here, but there are plenty of tutorials online concerning the mathematics of matrix transformations. You'll end up with a matrix with 6 variables, in the form shown above, and we'll use those for this example.

Inverting T[edit]

Not all matrices can be inverted, but for this case with the affine restricted 3x3 matrix, any matrix for which (AE-BD) is not zero has an inverse (This value is the 'determinant' of the matrix, and represents the change in area that a shape undergoes when transformed, you cannot reverse a matrix with a zero determinant because it represents a collapse into a single point or line)

det = AE - BD
x   = ( EX - BY + (BF-CE)) / det
y   = (-DX + AY - (AF-CD)) / det

Thus, if we were to make a new matrix for T' it'd be as follows

( E/det -B/det (BF-CE)/det )
( -D/det A/det -(AF-CD)/det )
( 0 0 1 )

Final SetTexCoord results[edit]

To calculate the final image coordinates, we apply T' to each of the corner Texture coordinates:

UL Texture Coordinates (X,Y) = (0,0)

ULx = ( BF - CE) / det
ULy = (-AF + CD) / det

LL Texture Coordinates (X,Y) = (0,1)

LLx = (-B + BF - CE) / det = (-(1-F)B - CE) / det
LLy = ( A - AF + CD) / det = ( (1-F)A + CD) / det

UR Texture Coordinates (X,Y) = (1,0)

URx = ( E + BF - CE) / det = ( BF + (1-C)E ) / det
URy = (-D - AF + CD) / det = ( AF - (1-C)D ) / det

LR Texture Coordinates (X,Y) = (1,1)

LRx = ( E - B + BF - CE) / det = ( (1-C)E - (1-F)B ) / det
LRy = (-D + A - AF + CD) / det = (-(1-C)D + (1-F)A ) / det

Example function[edit]

The function below will take a texture t, and a matrix with 6 variables as its arguments, and apply the transformation to the texture using the SetTexCoord calculations above.

function setCoords(t, A, B, C, D, E, F)
	local det = A*E - B*D;
	local ULx, ULy, LLx, LLy, URx, URy, LRx, LRy;
	
	ULx, ULy = ( B*F - C*E ) / det, ( -(A*F) + C*D ) / det;
	LLx, LLy = ( -B + B*F - C*E ) / det, ( A - A*F + C*D ) / det;
	URx, URy = ( E + B*F - C*E ) / det, ( -D - A*F + C*D ) / det;
	LRx, LRy = ( E - B + B*F - C*E ) / det, ( -D + A -(A*F) + C*D ) / det;
	
	t:SetTexCoord(ULx, ULy, LLx, LLy, URx, URy, LRx, LRy);
end

Applying transformations is then rather simple. To apply a rotation to the texture, we can use the rotation matrix below (assuming angle a):

( cos(a) sin(a) 1 )
( -sin(a) cos(a) 1 )

Applying a rotation of 90 degrees can then be done by using:

local cos, sin = math.cos, math.sin;
local angle = math.rad(90);
setCoords(texture, cos(angle), sin(angle), 1, -sin(angle), cos(angle), 1);

Simple rotation of square textures around the center[edit]

While the above section about matrix manipulation gives a lot of flexibility, most often much simpler math suffice. Here's an example of rotating a square texture around its center with an arbitrary angle:

local s2 = sqrt(2);
local cos, sin, rad = math.cos, math.sin, math.rad;
local function CalculateCorner(angle)
	local r = rad(angle);
	return 0.5 + cos(r) / s2, 0.5 + sin(r) / s2;
end
local function RotateTexture(texture, angle)
	local LRx, LRy = CalculateCorner(angle + 45);
	local LLx, LLy = CalculateCorner(angle + 135);
	local ULx, ULy = CalculateCorner(angle + 225);
	local URx, URy = CalculateCorner(angle - 45);
	
	texture:SetTexCoord(ULx, ULy, LLx, LLy, URx, URy, LRx, LRy);
end

Even simpler rotation of textures about the center[edit]

function RotateTexture(self, degrees)
	local angle = math.rad(degrees)
	local cos, sin = math.cos(angle), math.sin(angle)
	self:SetTexCoord((sin - cos), -(cos + sin), -cos, -sin, sin, -cos, 0, 0)
end

Simple rotation of textures about their own center[edit]

It may just have been a lack of understanding on my part but the above methods did not work for me; Or at least did not meet my needs.

To be explicit, I wanted to be able to rotate a texture about its own center.

In other words, I wanted the texture to spin in place, and not rotate or move the texture about the center of the UI, or its parent's center.

The following code gives a rough idea of how to animate a texture to make it spin.

But the basic method can be seen in the :SetTexCoord method :

local angleInc = 0.25
function myOnUpdate(self, elapsed)
 	self.timer = self.timer + elapsed;
 	if ( self.timer > 0.05 ) then
  		self.hAngle = self.hAngle - angleInc;
  		self.s = sin(self.hAngle);
  		self.c = cos(self.hAngle);
  		miniNote:SetTexCoord(	0.5-self.s, 0.5+self.c,
  					0.5+self.c, 0.5+self.s,
  					0.5-self.c, 0.5-self.s,
  					0.5+self.s, 0.5-self.c);
  		self.timer = 0;
 	end
end

angleInc has been precalculated as a Radians value - the larger it is, the faster the spin.

Or reduce the self.timer threshold to make a smoother rotation.


radians = (pi/180) * degrees

Rotation of textures about any point with any aspect[edit]

This function caters to all your rotation needs.

function RotateCoordPair (x,y,ox,oy,a,asp)
	y=y/asp
	oy=oy/asp
	return ox + (x-ox)*math.cos(a) - (y-oy)*math.sin(a),
		(oy + (y-oy)*math.cos(a) + (x-ox)*math.sin(a))*asp
end

And use it like this:

	coords={tl={x=0,y=0},
		bl={x=0,y=1},
		tr={x=1,y=0},
		br={x=1,y=1}}
	origin={x=0.5,y=1.0}
	aspect=image_width/image_height
	angle=3.14159/2
	texture:SetTexCoord(
		RotateCoordPair(coords.tl.x,coords.tl.y,origin.x,origin.y,angle,aspect),
		RotateCoordPair(coords.bl.x,coords.bl.y,origin.x,origin.y,angle,aspect),
		RotateCoordPair(coords.tr.x,coords.tr.y,origin.x,origin.y,angle,aspect),
		RotateCoordPair(coords.br.x,coords.br.y,origin.x,origin.y,angle,aspect)
	)