[342f33f] | 1 | #ifndef VECTOR_HPP_
|
---|
| 2 | #define VECTOR_HPP_
|
---|
| 3 |
|
---|
[357fba] | 4 | using namespace std;
|
---|
| 5 |
|
---|
| 6 | #include "helpers.hpp"
|
---|
| 7 |
|
---|
[e9b8bb] | 8 | class Vector;
|
---|
[7d96c6] | 9 |
|
---|
[342f33f] | 10 | /** Single vector.
|
---|
| 11 | * basically, just a x[3] but with helpful functions
|
---|
| 12 | */
|
---|
[e4ea46] | 13 | class Vector {
|
---|
[042f82] | 14 | public:
|
---|
| 15 | double x[NDIM];
|
---|
[6ac7ee] | 16 |
|
---|
[042f82] | 17 | Vector();
|
---|
| 18 | Vector(double x1, double x2, double x3);
|
---|
| 19 | ~Vector();
|
---|
[6ac7ee] | 20 |
|
---|
[042f82] | 21 | double Distance(const Vector *y) const;
|
---|
| 22 | double DistanceSquared(const Vector *y) const;
|
---|
| 23 | double PeriodicDistance(const Vector *y, const double *cell_size) const;
|
---|
| 24 | double PeriodicDistanceSquared(const Vector *y, const double *cell_size) const;
|
---|
| 25 | double ScalarProduct(const Vector *y) const;
|
---|
| 26 | double Projection(const Vector *y) const;
|
---|
[d4d0dd] | 27 | double Norm() const;
|
---|
| 28 | double NormSquared() const;
|
---|
[042f82] | 29 | double Angle(const Vector *y) const;
|
---|
[0dbddc] | 30 | bool IsNull();
|
---|
[6ac7ee] | 31 |
|
---|
[042f82] | 32 | void AddVector(const Vector *y);
|
---|
| 33 | void SubtractVector(const Vector *y);
|
---|
| 34 | void CopyVector(const Vector *y);
|
---|
| 35 | void RotateVector(const Vector *y, const double alpha);
|
---|
| 36 | void VectorProduct(const Vector *y);
|
---|
| 37 | void ProjectOntoPlane(const Vector *y);
|
---|
| 38 | void Zero();
|
---|
| 39 | void One(double one);
|
---|
| 40 | void Init(double x1, double x2, double x3);
|
---|
| 41 | void Normalize();
|
---|
| 42 | void Translate(const Vector *x);
|
---|
| 43 | void Mirror(const Vector *x);
|
---|
| 44 | void Scale(double **factor);
|
---|
| 45 | void Scale(double *factor);
|
---|
| 46 | void Scale(double factor);
|
---|
| 47 | void MatrixMultiplication(double *M);
|
---|
| 48 | double * InverseMatrix(double *A);
|
---|
| 49 | void InverseMatrixMultiplication(double *M);
|
---|
| 50 | void KeepPeriodic(ofstream *out, double *matrix);
|
---|
| 51 | void LinearCombinationOfVectors(const Vector *x1, const Vector *x2, const Vector *x3, double *factors);
|
---|
| 52 | double CutsPlaneAt(Vector *A, Vector *B, Vector *C);
|
---|
[2319ed] | 53 | bool GetIntersectionWithPlane(ofstream *out, Vector *PlaneNormal, Vector *PlaneOffset, Vector *LineVector, Vector *LineVector2);
|
---|
| 54 | bool GetIntersectionOfTwoLinesOnPlane(ofstream *out, Vector *Line1a, Vector *Line1b, Vector *Line2a, Vector *Line2b);
|
---|
[042f82] | 55 | bool GetOneNormalVector(const Vector *x1);
|
---|
| 56 | bool MakeNormalVector(const Vector *y1);
|
---|
| 57 | bool MakeNormalVector(const Vector *y1, const Vector *y2);
|
---|
| 58 | bool MakeNormalVector(const Vector *x1, const Vector *x2, const Vector *x3);
|
---|
| 59 | bool SolveSystem(Vector *x1, Vector *x2, Vector *y, double alpha, double beta, double c);
|
---|
| 60 | bool LSQdistance(Vector **vectors, int dim);
|
---|
| 61 | void AskPosition(double *cell_size, bool check);
|
---|
| 62 | bool Output(ofstream *out) const;
|
---|
[342f33f] | 63 | };
|
---|
| 64 |
|
---|
[9c20aa] | 65 | ostream & operator << (ostream& ost, const Vector &m);
|
---|
[6ac7ee] | 66 | //Vector& operator+=(Vector& a, const Vector& b);
|
---|
| 67 | //Vector& operator*=(Vector& a, const double m);
|
---|
| 68 | //Vector& operator*(const Vector& a, const double m);
|
---|
| 69 | //Vector& operator+(const Vector& a, const Vector& b);
|
---|
[342f33f] | 70 |
|
---|
| 71 | #endif /*VECTOR_HPP_*/
|
---|