[342f33f] | 1 | #ifndef VECTOR_HPP_
|
---|
| 2 | #define VECTOR_HPP_
|
---|
| 3 |
|
---|
[357fba] | 4 | using namespace std;
|
---|
| 5 |
|
---|
[f66195] | 6 | /*********************************************** includes ***********************************/
|
---|
| 7 |
|
---|
| 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
[357fba] | 12 |
|
---|
[986ed3] | 13 | #include <iosfwd>
|
---|
[54a746] | 14 |
|
---|
[1bd79e] | 15 | #include <memory>
|
---|
[45ef76] | 16 | #include <vector>
|
---|
[1bd79e] | 17 |
|
---|
[f66195] | 18 | #include "defs.hpp"
|
---|
[1513a74] | 19 | #include "Space.hpp"
|
---|
[f66195] | 20 |
|
---|
| 21 | /********************************************** declarations *******************************/
|
---|
[7d96c6] | 22 |
|
---|
[45ef76] | 23 | class Vector;
|
---|
[325390] | 24 | class Matrix;
|
---|
[ce3d2b] | 25 | struct VectorContent;
|
---|
[45ef76] | 26 |
|
---|
| 27 | typedef std::vector<Vector> pointset;
|
---|
| 28 |
|
---|
[342f33f] | 29 | /** Single vector.
|
---|
| 30 | * basically, just a x[3] but with helpful functions
|
---|
| 31 | */
|
---|
[1513a74] | 32 | class Vector : public Space{
|
---|
[325390] | 33 | friend Vector operator*(const Matrix&,const Vector&);
|
---|
[8e17d6] | 34 | friend class Matrix;
|
---|
[1bd79e] | 35 | public:
|
---|
[042f82] | 36 | Vector();
|
---|
[fb73b8] | 37 | Vector(const double x1, const double x2, const double x3);
|
---|
[0a4f7f] | 38 | Vector(const Vector& src);
|
---|
[72e7fa] | 39 | virtual ~Vector();
|
---|
| 40 |
|
---|
[1bd79e] | 41 | // Method implemented by forwarding to the Representation
|
---|
| 42 |
|
---|
[753f02] | 43 | double DistanceSquared(const Vector &y) const;
|
---|
[d4c9ae] | 44 | double DistanceToSpace(const Space& space) const;
|
---|
[753f02] | 45 | double ScalarProduct(const Vector &y) const;
|
---|
| 46 | double Angle(const Vector &y) const;
|
---|
[54a746] | 47 | bool IsZero() const;
|
---|
| 48 | bool IsOne() const;
|
---|
[753f02] | 49 | bool IsNormalTo(const Vector &normal) const;
|
---|
| 50 | bool IsEqualTo(const Vector &a) const;
|
---|
| 51 |
|
---|
| 52 | void AddVector(const Vector &y);
|
---|
| 53 | void SubtractVector(const Vector &y);
|
---|
| 54 | void VectorProduct(const Vector &y);
|
---|
| 55 | void ProjectOntoPlane(const Vector &y);
|
---|
| 56 | void ProjectIt(const Vector &y);
|
---|
| 57 | Vector Projection(const Vector &y) const;
|
---|
| 58 | void ScaleAll(const double *factor);
|
---|
[b5bf84] | 59 | void ScaleAll(const Vector &factor);
|
---|
[776b64] | 60 | void Scale(const double factor);
|
---|
[753f02] | 61 | bool GetOneNormalVector(const Vector &x1);
|
---|
| 62 | bool MakeNormalTo(const Vector &y1);
|
---|
[45ef76] | 63 | std::pair<Vector,Vector> partition(const Vector&) const;
|
---|
| 64 | std::pair<pointset,Vector> partition(const pointset&) const;
|
---|
[2ededc2] | 65 |
|
---|
[0a4f7f] | 66 | // Accessors ussually come in pairs... and sometimes even more than that
|
---|
[753f02] | 67 | double& operator[](size_t i);
|
---|
| 68 | const double& operator[](size_t i) const;
|
---|
[1bd79e] | 69 | double& at(size_t i);
|
---|
| 70 | const double& at(size_t i) const;
|
---|
[0a4f7f] | 71 |
|
---|
| 72 | // Assignment operator
|
---|
[753f02] | 73 | Vector &operator=(const Vector& src);
|
---|
[0a4f7f] | 74 |
|
---|
| 75 | // Access to internal structure
|
---|
[ce3d2b] | 76 | VectorContent* get();
|
---|
[72e7fa] | 77 |
|
---|
[1bd79e] | 78 | // Methods that are derived directly from other methods
|
---|
| 79 | double Norm() const;
|
---|
| 80 | double NormSquared() const;
|
---|
| 81 | void Normalize();
|
---|
| 82 | void Zero();
|
---|
| 83 | void One(const double one);
|
---|
| 84 | void LinearCombinationOfVectors(const Vector &x1, const Vector &x2, const Vector &x3, const double * const factors);
|
---|
| 85 |
|
---|
[72e7fa] | 86 | // operators for mathematical operations
|
---|
| 87 | bool operator==(const Vector& b) const;
|
---|
[fa5a6a] | 88 | bool operator!=(const Vector& b) const;
|
---|
[72e7fa] | 89 | const Vector& operator+=(const Vector& b);
|
---|
| 90 | const Vector& operator-=(const Vector& b);
|
---|
| 91 | Vector const operator+(const Vector& b) const;
|
---|
| 92 | Vector const operator-(const Vector& b) const;
|
---|
[0a4f7f] | 93 |
|
---|
[1513a74] | 94 | // Methods inherited from Space
|
---|
| 95 | virtual double distance(const Vector &point) const;
|
---|
| 96 | virtual Vector getClosestPoint(const Vector &point) const;
|
---|
| 97 |
|
---|
[1bd79e] | 98 | protected:
|
---|
| 99 |
|
---|
[0a4f7f] | 100 | private:
|
---|
[ce3d2b] | 101 | Vector(VectorContent *);
|
---|
| 102 | VectorContent *content;
|
---|
[0a4f7f] | 103 |
|
---|
[342f33f] | 104 | };
|
---|
| 105 |
|
---|
[005e18] | 106 | // some commonly used and fixed vectors
|
---|
| 107 | const extern Vector zeroVec;
|
---|
| 108 | const extern Vector e1;
|
---|
| 109 | const extern Vector e2;
|
---|
| 110 | const extern Vector e3;
|
---|
| 111 |
|
---|
[9c20aa] | 112 | ostream & operator << (ostream& ost, const Vector &m);
|
---|
[b84d5d] | 113 | const Vector& operator*=(Vector& a, const double m);
|
---|
| 114 | Vector const operator*(const Vector& a, const double m);
|
---|
| 115 | Vector const operator*(const double m, const Vector& a);
|
---|
[342f33f] | 116 |
|
---|
| 117 | #endif /*VECTOR_HPP_*/
|
---|