Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Improved peds shadow code (still needs cleaning up)
git-svn-id: svn://localhost/vcspc/trunk@36 9f344024-d43e-4b27-bde7-3d027e20192d
- Loading branch information
Showing
with
795 additions
and 231 deletions.
- +11 −0 VCS PC/FileMgr.cpp
- +1 −83 VCS PC/General.cpp
- +0 −140 VCS PC/General.h
- BIN VCS PC/Hud.cpp
- +13 −0 VCS PC/Maths.cpp
- +363 −0 VCS PC/Maths.h
- +41 −0 VCS PC/ModelInfo.cpp
- +38 −2 VCS PC/ModelInfo.h
- +12 −0 VCS PC/RW.cpp
- +8 −0 VCS PC/StdAfx.h
- +1 −0 VCS PC/VCS PC.vcxproj
- +3 −0 VCS PC/VCS PC.vcxproj.filters
- +132 −0 VCS PC/VCSPC.cpp
- +43 −5 VCS PC/Vehicle.cpp
- +2 −1 VCS PC/Vehicle.h
- +127 −0 VCS PC/clinklist.txt
There are no files selected for viewing
Binary file not shown.
| @@ -0,0 +1,13 @@ | ||
| #include "StdAfx.h" | ||
| #include "Maths.h" | ||
|
|
||
| void CMatrix::SetRotateXOnly(float fAngle) | ||
|
|
||
|
|
||
| void CMatrix::SetRotateYOnly(float fAngle) | ||
|
|
||
|
|
||
| void CMatrix::SetRotateZOnly(float fAngle) | ||
|
|
||
|
|
||
| void CMatrix::SetRotateOnly(float fAngleX, float fAngleY, float fAngleZ) |
Oops, something went wrong.