Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/vector.hpp

    r342f33f r110ceb  
    1010
    1111  vector();
     12  vector(double x1, double x2, double x3);
    1213  ~vector();
    1314
     
    2324  void CopyVector(const vector *y);
    2425  void RotateVector(const vector *y, const double alpha);
     26  void ProjectOntoPlane(const vector *y);
    2527  void Zero();
     28  void One(double one);
     29  void Init(double x1, double x2, double x3);
    2630  void Normalize();
    2731  void Translate(const vector *x);
     
    3539  void LinearCombinationOfVectors(const vector *x1, const vector *x2, const vector *x3, double *factors);
    3640 
     41  double CutsPlaneAt(vector *A, vector *B, vector *C);
    3742  bool GetOneNormalVector(const vector *x1);
    3843  bool MakeNormalVector(const vector *y1);
Note: See TracChangeset for help on using the changeset viewer.