mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-15 06:24:09 +00:00
Peds
This commit is contained in:
parent
ed9ab6c55f
commit
e5df72a1e9
8 changed files with 764 additions and 127 deletions
|
@ -212,6 +212,7 @@ public:
|
|||
}
|
||||
void SetRotate(float xAngle, float yAngle, float zAngle);
|
||||
void Rotate(float x, float y, float z);
|
||||
void RotateX(float x);
|
||||
|
||||
void Reorthogonalise(void);
|
||||
void CopyOnlyMatrix(CMatrix *other){
|
||||
|
|
|
@ -40,6 +40,12 @@ CMatrix::Rotate(float x, float y, float z)
|
|||
*this = rot * *this;
|
||||
}
|
||||
|
||||
void
|
||||
CMatrix::RotateX(float x)
|
||||
{
|
||||
Rotate(x, 0.0f, 0.0f);
|
||||
}
|
||||
|
||||
void
|
||||
CMatrix::Reorthogonalise(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue