Open In App

Computer Graphics – 3D Shearing Transformation

Last Updated : 14 Feb, 2021
Improve
Improve
Like Article
Like
Save
Share
Report
Shearing transformation is the same as we see in 2D space, but here we have to deal with the x, y, and z axes whereas in 2D we deal with the only x and y axes. Shearing is the process of slanting an object in 3D space either in x, y, or in the z-direction. Shearing changes(or deformed) the shape of the object. AS we are discussing 3D space so shearing can also be done in any of the three directions as follows. Given below are the types of shearing transformation. 
  • Shearing in X-direction. 
  • Shearing in y-direction 
  • Shearing in z-direction.
Shearing in X-Direction: Here the coordinate of X remains unchanged while the coordinate of Y and Z is changed. Shearing is done through the Shearing Transformation matrix, which is represented as follows. \hspace{6.08cm} \mathbf{S_x=\left [\begin{matrix}1&s_y&s_z&0\\0&1&0&0 \\0&0&1&0\\0&0&0&1\end{matrix}\right] } Consider a point P[x, y, z] in 3D space over which we perform the shearing transformation in the X-direction and it becomes P'[x, y, z]. \mathbf{P'[x\hspace{0.2cm}y \hspace{0.2cm}z\hspace{0.2cm}1]= P[x_o\hspace{0.2cm}y_o\hspace{0.2cm}z_o\hspace {0.2cm}1].S_x}\\ \newline \hspace {6.08cm}\mathbf{P'[x, \hspace{0.2cm}y, \hspace{0.2cm}z]=[x_o, \hspace{0.2cm}y_n, \hspace{0.2cm}z_n]} \\ \textbf{The coordinate}\, \, \mathbf{P'[x_n, y_n, z_n]}\, \, \textbf{can also be calculated using below equations:} \newline \hspace{6.8cm}\mathbf{x_n = x_o \hspace{0.4cm}Remains\hspace{0.2cm}unchanged} \\ \hspace{6.8cm}\mathbf{y_n=y_o+s_y.x_o} \\ \hspace{6.8cm}\mathbf{z_n=z_o+s_z.x_0}\\ Shearing in Y-Direction: Here the coordinate of Y remains unchanged while the coordinate of X and Z are changed. Shearing is done through the Shearing Transformation matrix, which is represented as follows.  \mathbf{S_y= \left [\begin{matrix}1&0&0&0\\s_x&1&s_z&0 \\0&0&1&0\\0&0&0&1\end{matrix}\right] } Consider a point P[x, y, z] in 3D space over which we perform the shearing transformation in the Y-direction and it becomes P'[x, y, z].  \mathbf{P'[x\hspace{0.2cm}y \hspace{0.2cm}z\hspace{0.2cm}1]=P[x_o\hspace {0.2cm}y_o\hspace{0.2cm}z_o\hspace{0.2cm}1].S_y} \\ \newline \hspace{6.08cm}\mathbf{P'[x, \hspace{0.2cm}y, \hspace{0.2cm}z]=[x_n, \hspace{0.2cm}y_o, \hspace{0.2cm}z_n]} \\ \newline \textbf{The coordinate}\, \, \mathbf{P'[x_n, y_n, z_n]}\, \, \textbf{can also be calculated using below equations:} \newline \hspace{6.8cm}\mathbf{x_n = x_o+s_x.y_o   } \\ \hspace{6.8cm}\mathbf{y_n=y_o \hspace{0.4cm}Remains \hspace{0.2cm}unchanged}\\ \hspace{6.8cm} \mathbf{z_n=z_o+s_z.y_o }\\ Shearing in Z-Direction: Here the coordinate of Z remains unchanged while the coordinate of X and Y are changed. Shearing is done through the Shearing Transformation matrix, which is represented as follows for the shearing in Z-direction.  \mathbf{S_z =\left [\begin{matrix}1&0&0&0 \\0&1&0&0\\s_x&s_y&1&0 \\0&0&0&1\end{matrix}\right] } Consider a point P[x, y, z] in 3D space over which we perform the shearing transformation in the Z-direction and its become P'[x, y, z].  \mathbf{P'[x\hspace{0.2cm} y\hspace{0.2cm}z\hspace{0.2cm}1]=P[x_o \hspace{0.2cm}y_o\hspace{0.2cm}z_o\hspace {0.2cm}1].S_z}\\ \newline \hspace{6.08cm} \mathbf{P'[x, \hspace{0.2cm}y, \hspace{0.2cm}z]=[x_n, \hspace{0.2cm}y_n, \hspace{0.2cm}z_o]}\\ \textbf{The coordinate}\, \, \mathbf{P'[x_n, y_n, z_n]}\, \, \textbf{can also be calculated using below equations:} \newline \hspace{6.8cm}\mathbf{x_n = x_o+s_x.z_o   } \\ \hspace{6.8cm}\mathbf{y_n=y_o+s_y.z_o} \\ \hspace{6.8cm}\mathbf{z_n=z_o \hspace{0.4cm}Remains \hspace{0.2cm}unchanged}\\ Note:  Here, xn, yn, zn Are  showing=new values and xo, yo, zo Are showing=old values. Perform Shearing Transformation in the given cuboid(OABCDEFG) along Z-direction if a shearing parameter is as follows Sx=2, Sy=3. The Shearing transformation matrix for z-direction is as follows. \mathbf{S_z=\left [\begin{matrix}1&0&0&0\\0&1&0&0\\s_x&s_y&1&0 \\0&0&0&1\end{matrix}\right]} And the given cuboid is as below:

Fig.1

Now, we’ll apply the shearing transformation condition over all the coordinates and calculate the new corresponding coordinates: Point O[0, 0, 0] becomes O’ after performing Reflection transformation: \mathbf {O'[x\hspace{0.2cm}y\hspace {0.2cm}z\hspace{0.2cm}1]= [0\hspace{0.2cm}0\hspace{0.2cm}0 \hspace{0.2cm}1]\left [\begin{matrix}1&0&0&0 \\0&1&0&0\\2&3&1&0\\0&0&0&1 \end{matrix}\right]} \\ \newline \hspace{7.09cm}\mathbf{= [\hspace{0.2cm}0\hspace{0.2cm}0\hspace {0.2cm}0\hspace{0.2cm}1]}\\ \newline \hspace{4.37cm}\mathbf {O'[x\hspace{0.2cm}y\hspace {0.2cm}z\hspace{0.2cm}1]= [\hspace{0.2cm}0\hspace{0.2cm}0 \hspace{0.2cm}0\hspace{0.2cm}1]} Point A'[0, 0, 4] becomes A’ after performing Reflection transformation: \mathbf{A'[x \hspace {0.2cm}y\hspace{0.2cm}z \hspace{0.2cm}1] = [0\hspace{0.2cm}0\hspace{0.2cm}4 \hspace {0.2cm}1]\left [\begin{matrix} 1&0&0&0 \\0&1&0&0\\2&3&1&0\\0&0&0&1\end {matrix}\right]} \\ \newline \hspace {7.09cm}\mathbf{= [8\hspace{0.2cm}12\hspace {0.2cm}4\hspace{0.2cm}1]} \\ \newline \hspace {4.37cm}\mathbf{A'[x\hspace{0.2cm}, y\hspace{0.2cm}, z]= [8\hspace{0.2cm}12 \hspace{0.2cm}4]} Point B'[0, 0, 4] becomes B’ after performing Reflection transformation: \mathbf{B' [x\hspace{0.2cm}y\hspace {0.2cm}z\hspace{0.2cm}1]= [0\hspace{0.2cm}4\hspace{0.2cm}2\hspace{0.2cm}1] \left [\begin{matrix}1&0&0&0\\0&1&0&0 \\2&3&1&0\\0&0&0&1\end{matrix}\right]} \\ \newline \hspace{7.09cm}\mathbf{= [8\hspace{0.2cm}10\hspace{0.2cm}2\hspace{0.2cm}1]} \\ \newline \hspace{4.37cm}\mathbf{B'[x\hspace{0.2cm}, y\hspace{0.2cm}, z]=[8\hspace{0.2cm}10\hspace{0.2cm}2]} Point C'[2, 4, 0] becomes C’ after performing Reflection transformation: \mathbf{C'[x\hspace{0.2cm}y \hspace{0.2cm}z\hspace{0.2cm}1]= [2\hspace{0.2cm}4\hspace{0.2cm}0 \hspace{0.2cm}1]\left [\begin{matrix}1&0&0&0 \\0&1&0&0\\2&3&1&0 \\0&0&0&1\end{matrix}\right]} \\ \newline \hspace {7.09cm}\mathbf{= [2\hspace{0.2cm}4\hspace {0.2cm}0\hspace{0.2cm}1]}\\ \newline \mathbf{C'[x\hspace{0.2cm}, y\hspace{0.2cm}, z]= [2\hspace{0.2cm}4\hspace {0.2cm}0]} Point D'[2, 2, 4] becomes D’ after performing Reflection transformation: \mathbf{D'[x\hspace{0.2cm}y \hspace{0.2cm}z\hspace{0.2cm}1]= [2\hspace{0.2cm}2\hspace{0.2cm}4\hspace {0.2cm}1]\left [\begin{matrix}1&0&0&0 \\0&1&0&0\\2&3&1&0\\0&0&0&1\end{matrix}\right] } \\ \newline \hspace{7.09cm}\mathbf{= [10\hspace{0.2cm}14\hspace{0.2cm}4\hspace{0.2cm}1] }\\ \newline \hspace{4.37cm}\mathbf{D'[x\hspace{0.2cm} , y\hspace{0.2cm}, z]=[10\hspace{0.2cm}14 \hspace{0.2cm}4]} Point E'[2, 0, 0] becomes E’ after performing Reflection transformation: \mathbf{E' [x\hspace{0.2cm}y\hspace {0.2cm}z\hspace{0.2cm}1]= [2\hspace{0.2cm}0\hspace {0.2cm}0\hspace{0.2cm}1] \left [\begin{matrix}1&0&0&0 \\0&1&0&0\\2&3&1&0 \\0&0&0&1\end{matrix}\right]} \\ \newline \hspace{7.09cm}\mathbf{= [2\hspace{0.2cm}0\hspace{0.2cm}0\hspace{0.2cm}1]} \\ \newline \hspace{4.37cm}\mathbf{E'[x\hspace{0.2cm}, y\hspace{0.2cm}, z]=[2\hspace{0.2cm}0\hspace{0.2cm}0]} Point F'[ 0, 0, 2] becomes F’ after performing Reflection transformation: \mathbf {F'[x\hspace{0.2cm}y\hspace{0.2cm}z \hspace{0.2cm}1]=[0\hspace{0.2cm}0\hspace {0.2cm}2\hspace{0.2cm}1]\left [\begin{matrix}1&0&0&0\\0&1&0&0\\2&3&1&0 \\0&0&0&1\end{matrix}\right]} \\ \newline \hspace{7.09cm}\mathbf{= [4\hspace{0.2cm}6\hspace{0.2cm}2\hspace{0.2cm}1]} \\ \newline \hspace{4.37cm}\mathbf{F'[x\hspace{0.2cm}, y\hspace{0.2cm}, z]=[4\hspace{0.2cm}6\hspace{0.2cm}2]} Point G'[2, 0, 2] becomes G’ after performing Reflection transformation: \mathbf{G'[x\hspace{0.2cm}y \hspace{0.2cm}z\hspace{0.2cm}1]=[2\hspace{0.2cm}0 \hspace{0.2cm}2\hspace{0.2cm}1]\left [\begin{matrix}1&0&0&0\\0&1&0&0\\2&3&1&0 \\0&0&0&1\end{matrix}\right]} \\ \newline \hspace{7.09cm}\mathbf{= [6\hspace{0.2cm}6\hspace{0.2cm}2\hspace{0.2cm}1]} \\ \newline \hspace{4.37cm}\mathbf {G'[x\hspace{0.2cm}, y\hspace{0.2cm}, z]= [6\hspace{0.2cm}6\hspace{0.2cm}2]} Finally, after performing the Shearing transformation on the given cuboid your Fig.1 will look like as below:
Shearing transformation

Fig.2



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads