mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-10 07:44:09 +00:00
fixed to CAutomobile and friends
This commit is contained in:
parent
e6b9c20131
commit
bae3a3e72f
8 changed files with 65 additions and 63 deletions
|
@ -223,6 +223,7 @@ public:
|
|||
void SetRotate(float xAngle, float yAngle, float zAngle);
|
||||
void Rotate(float x, float y, float z);
|
||||
void RotateX(float x);
|
||||
void RotateY(float y);
|
||||
void RotateZ(float z);
|
||||
|
||||
void Reorthogonalise(void);
|
||||
|
|
|
@ -59,6 +59,12 @@ CMatrix::RotateX(float x)
|
|||
Rotate(x, 0.0f, 0.0f);
|
||||
}
|
||||
|
||||
void
|
||||
CMatrix::RotateY(float y)
|
||||
{
|
||||
Rotate(0.0f, y, 0.0f);
|
||||
}
|
||||
|
||||
void
|
||||
CMatrix::RotateZ(float z)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue