本文整理汇总了C++中Matrix4x4::Set方法的典型用法代码示例。如果您正苦于以下问题:C++ Matrix4x4::Set方法的具体用法?C++ Matrix4x4::Set怎么用?C++ Matrix4x4::Set使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Matrix4x4
的用法示例。
在下文中一共展示了Matrix4x4::Set方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(void)
{
Matrix4x4 mat;
const double v[]=
{
6.0,1.0,4.0,9.0,
9.0,8.0,6.0,1.0,
7.0,2.0,9.0,4.0,
1.0,7.0,5.0,9.0
};
for(int i=0; i<16; ++i)
{
const int r=1+i/4;
const int c=1+i%4;
mat.Set(r,c,v[i]);
}
mat.Print();
mat.Transpose();
printf("\n");
mat.Print();
// If you go for extra credit, uncomment the following three lines.
// printf("\n");
// mat.Invert();
// mat.Print();
return 0;
}
示例2: GetTransformationMatrix
Matrix4x4 Frame::GetTransformationMatrix(const Date& t, const Frame& ref) const
{
Matrix4x4 transform = Matrix4x4::Zero;
Vector3 x = AxisX(t, ref);
Vector3 y = AxisY(t, ref);
Vector3 z = AxisZ(t, ref);
for(int row = 0; row < 3; row++)
{
transform.Set(row, 0, x[row]);
transform.Set(row, 1, y[row]);
transform.Set(row, 2, z[row]);
}
transform.Set(3, 3, 1.0);
return transform;
}