Home | History | Annotate | Download | only in Tools

Lines Matching defs:Translation

1365  @return 			a PVRTMat3 corresponding to the requested translation
1705 @brief Alters the translation component of the transformation matrix.
1706 @param[in] tx Distance of translation in x axis
1707 @param[in] ty Distance of translation in y axis
1708 @param[in] tz Distance of translation in z axis
1723 @brief Alters the translation component of the transformation matrix.
1724 @param[in] tvec Translation vector
1734 @param[in] tx Distance of translation in x axis
1735 @param[in] ty Distance of translation in y axis
1736 @param[in] tz Distance of translation in z axis
1753 @param[in] tvec Translation vector
1754 @return Returns the translation defined by the passed parameters
1830 @return a PVRTMat4 corresponding to the requested translation
1832 static PVRTMat4 Translation(const VERTTYPE tx, const VERTTYPE ty, const VERTTYPE tz)
1844 @return a PVRTMat4 corresponding to the requested translation
1847 static PVRTMat4 Translation(const PVRTVec3& vec)
1849 return Translation(vec.x, vec.y, vec.z);