Changes in src/vector.hpp [342f33f:110ceb]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/vector.hpp
r342f33f r110ceb 10 10 11 11 vector(); 12 vector(double x1, double x2, double x3); 12 13 ~vector(); 13 14 … … 23 24 void CopyVector(const vector *y); 24 25 void RotateVector(const vector *y, const double alpha); 26 void ProjectOntoPlane(const vector *y); 25 27 void Zero(); 28 void One(double one); 29 void Init(double x1, double x2, double x3); 26 30 void Normalize(); 27 31 void Translate(const vector *x); … … 35 39 void LinearCombinationOfVectors(const vector *x1, const vector *x2, const vector *x3, double *factors); 36 40 41 double CutsPlaneAt(vector *A, vector *B, vector *C); 37 42 bool GetOneNormalVector(const vector *x1); 38 43 bool MakeNormalVector(const vector *y1);
Note:
See TracChangeset
for help on using the changeset viewer.