source: git/src/vector3.h @ 9905e22

RELEASE/1.2debug-cidebug-ci-sanitiserswalls-data
Last change on this file since 9905e22 was 9905e22, checked in by Olly Betts <olly@…>, 5 years ago

Fix GCC 9 warning

There's no need to declare an explicit assignment operator which
does the same as the default one does, and C++11 deprecated having
an explicit assignment operator and relying on the implicit copy
constructor.

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[5809313]1//  vector3.h
2//
3//  C++ class for 3-element vectors
4//
[f8e4c56]5//  Copyright (C) 2000-2002, Mark R. Shinwell.
[cc9e2c65]6//  Copyright (C) 2002-2004,2005,2006,2015 Olly Betts
[5809313]7//
8//  This program is free software; you can redistribute it and/or modify
9//  it under the terms of the GNU General Public License as published by
10//  the Free Software Foundation; either version 2 of the License, or
11//  (at your option) any later version.
12//
13//  This program is distributed in the hope that it will be useful,
14//  but WITHOUT ANY WARRANTY; without even the implied warranty of
15//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16//  GNU General Public License for more details.
17//
18//  You should have received a copy of the GNU General Public License
19//  along with this program; if not, write to the Free Software
[ecbc6c18]20//  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
[5809313]21//
22
23#ifndef Vector3_h
24#define Vector3_h
25
[27b8b59]26#include <math.h>
[156dc16]27
[5809313]28class Vector3 {
[d67450e]29protected:
[4a0e6b35]30    double x, y, z;
[5809313]31
32public:
[4a0e6b35]33    Vector3() : x(0.0), y(0.0), z(0.0) { }
34    Vector3(double a, double b, double c) : x(a), y(b), z(c) { }
[5809313]35
[d67450e]36    double GetX() const { return x; }
37    double GetY() const { return y; }
38    double GetZ() const { return z; }
[5809313]39
[27b8b59]40    double magnitude() const {
41        return sqrt(x*x + y*y + z*z);
42    }
43
[cc9e2c65]44    // Returns a value in *radians*.
45    double gradient() const {
46        return atan2(z, sqrt(x*x + y*y));
47    }
48
[5809313]49    void normalise();
50
[d67450e]51    void assign(double a, double b, double c) {
[4a0e6b35]52        x = a; y = b; z = c;
53    }
[5809313]54
[3b7a8eb]55    void assign(const Vector3 &v) {
56        *this = v;
57    }
58
[4a0e6b35]59    friend Vector3 operator-(const Vector3& o) {
60        return Vector3(-o.x, -o.y, -o.z);
[156dc16]61    }
[4a0e6b35]62    Vector3& operator*=(double);
63    Vector3& operator/=(double);
[e4ec4b4]64    Vector3& operator+=(const Vector3&);
65    Vector3& operator-=(const Vector3&);
[5809313]66
[4a0e6b35]67    friend Vector3 operator*(double, const Vector3&);
68    friend Vector3 operator*(const Vector3& v, double f) {
[446e096]69        return f * v;
70    }
[156dc16]71    friend Vector3 operator*(const Vector3&, const Vector3&); // cross product
[5809313]72    friend Vector3 operator+(const Vector3&, const Vector3&);
[f8e4c56]73    friend Vector3 operator-(const Vector3&, const Vector3&);
[e4ec4b4]74    friend bool operator==(const Vector3&, const Vector3&);
[9b30732]75    friend bool operator<(const Vector3&, const Vector3&);
[5809313]76    friend double dot(const Vector3&, const Vector3&);
77};
78
[e4ec4b4]79inline bool operator==(const Vector3& a, const Vector3& b) {
80    return a.x == b.x && a.y == b.y && a.z == b.z;
81}
82
[9b30732]83// So we can use Vector3 as a key in a map...
84inline bool operator<(const Vector3& a, const Vector3& b) {
85    if (a.x != b.x) return a.x < b.x;
86    if (a.y != b.y) return a.y < b.y;
87    return a.z < b.z;
88}
89
[5809313]90#endif
Note: See TracBrowser for help on using the repository browser.