12345678910111213141516171819202122232425262728293031323334 |
- #ifndef CRYINCLUDE_EDITOR_UTIL_AFFINEPARTS_H
- #define CRYINCLUDE_EDITOR_UTIL_AFFINEPARTS_H
- #pragma once
- struct AffineParts
- {
- Vec3 pos;
- Quat rot;
- Quat rotScale;
- Vec3 scale;
- float fDet;
-
- void Decompose(const Matrix34& mat);
-
- void SpectralDecompose(const Matrix34& mat);
- };
- #endif
|