removed qt deprecation warning
This commit is contained in:
parent
82ac1bdc87
commit
b9f865d39e
|
|
@ -51,7 +51,7 @@ template <class ShotType>
|
||||||
shot.Extrinsics.SetTra(-tra);
|
shot.Extrinsics.SetTra(-tra);
|
||||||
|
|
||||||
vcg::Matrix44<ScalarType> rot;
|
vcg::Matrix44<ScalarType> rot;
|
||||||
QStringList values = attr.namedItem("RotationMatrix").nodeValue().split(" ", QString::SkipEmptyParts);
|
QStringList values = attr.namedItem("RotationMatrix").nodeValue().split(" ", Qt::SkipEmptyParts);
|
||||||
for (int y = 0; y < 4; y++)
|
for (int y = 0; y < 4; y++)
|
||||||
for (int x = 0; x < 4; x++)
|
for (int x = 0; x < 4; x++)
|
||||||
rot[y][x] = values[x + 4 * y].toDouble();
|
rot[y][x] = values[x + 4 * y].toDouble();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue