mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-06 03:49:59 +00:00
cleanup on CPed and CPedType
This commit is contained in:
parent
f8438e8ab6
commit
78e33785ec
6 changed files with 146 additions and 116 deletions
|
@ -30,6 +30,12 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
inline float
|
||||
DotProduct2D(const CVector2D &v1, const CVector2D &v2)
|
||||
{
|
||||
return v1.x*v2.x + v1.y*v2.y;
|
||||
}
|
||||
|
||||
inline float
|
||||
CrossProduct2D(const CVector2D &v1, const CVector2D &v2)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue