本文整理汇总了C++中Matrix4x4::GetRow方法的典型用法代码示例。如果您正苦于以下问题:C++ Matrix4x4::GetRow方法的具体用法?C++ Matrix4x4::GetRow怎么用?C++ Matrix4x4::GetRow使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrix4x4
的用法示例。
在下文中一共展示了Matrix4x4::GetRow方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tempVec
void Vector4D::operator*=(const Matrix4x4& _multipliedMat4)
{
Vector4D tempVec(*this);
Vector4D matRow1(_multipliedMat4.GetRow(0));
Vector4D matRow2(_multipliedMat4.GetRow(1));
Vector4D matRow3(_multipliedMat4.GetRow(2));
Vector4D matRow4(_multipliedMat4.GetRow(3));
m_x = StaticFunctions::Dot(matRow1, tempVec);
m_y = StaticFunctions::Dot(matRow2, tempVec);
m_z = StaticFunctions::Dot(matRow3, tempVec);
m_w = StaticFunctions::Dot(matRow4, tempVec);
}
示例2:
Vector4D Vector4D::operator*(const Matrix4x4& _multipliedMat4) const
{
Vector4D result;
Vector4D matRow1(_multipliedMat4.GetRow(0));
Vector4D matRow2(_multipliedMat4.GetRow(1));
Vector4D matRow3(_multipliedMat4.GetRow(2));
Vector4D matRow4(_multipliedMat4.GetRow(3));
result.m_x = StaticFunctions::Dot(matRow1, (*this));
result.m_y = StaticFunctions::Dot(matRow2, (*this));
result.m_z = StaticFunctions::Dot(matRow3, (*this));
result.m_w = StaticFunctions::Dot(matRow4, (*this));
return result;
}
示例3: NormalizePRSMatrix
void IceMaths::NormalizePRSMatrix(Matrix4x4& dest, Point& scale, const Matrix4x4& src)
{
Point row;
dest = src;
for( int i=0;i<3;i++)
{
src.GetRow(i,row);
// computes scales
scale[i] = row.Magnitude();
row /= scale[i];
dest.SetRow(i,row);
}
}