mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-16 04:34:08 +00:00
SetPosition, final part
This commit is contained in:
parent
131e8af174
commit
84c9484e55
20 changed files with 129 additions and 143 deletions
|
@ -9,11 +9,6 @@ public:
|
|||
#ifdef RWCORE_H
|
||||
CVector(const RwV3d &v) : x(v.x), y(v.y), z(v.z) {}
|
||||
|
||||
RwV3d toRwV3d(void) const {
|
||||
RwV3d vecRw = { this->x, this->y, this->z };
|
||||
return vecRw;
|
||||
}
|
||||
|
||||
operator RwV3d (void) const {
|
||||
RwV3d vecRw = { this->x, this->y, this->z };
|
||||
return vecRw;
|
||||
|
@ -22,10 +17,6 @@ public:
|
|||
operator RwV3d *(void) {
|
||||
return (RwV3d*)this;
|
||||
}
|
||||
|
||||
operator RwV3d &(void) {
|
||||
return *((RwV3d*)this);
|
||||
}
|
||||
#endif
|
||||
// (0,1,0) means no rotation. So get right vector and its atan
|
||||
float Heading(void) const { return Atan2(-x, y); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue