up down is broken
This commit is contained in:
@@ -23,6 +23,11 @@ class DeltaVector3 {
|
||||
float x, y, z;
|
||||
DeltaVector3(float xval, float yval, float zval);
|
||||
DeltaVector3();
|
||||
DeltaVector3 operator+(const DeltaVector3& other) const;
|
||||
DeltaVector3 operator-(const DeltaVector3& other) const;
|
||||
DeltaVector3 operator*(float a) const;
|
||||
DeltaVector3& operator+=(const DeltaVector3& other);
|
||||
DeltaVector3& operator-=(const DeltaVector3& other);
|
||||
float distanceToVector(const DeltaVector3 &vec) const;
|
||||
float distanceToPos(float x, float y) const;
|
||||
float dotProduct(const DeltaVector3 &vec) const;
|
||||
|
||||
Reference in New Issue
Block a user