00001 #ifndef PlanesOperations_H_ 00002 #define PlanesOperations_H_ 00003 00004 #include <math.h> 00005 00006 #include <iostream> 00007 00008 class PlanesOperations { 00009 00010 public: 00011 PlanesOperations(); 00012 ~PlanesOperations(); 00013 00014 00015 00016 double* getCrossProduct(double* vect0,double* vect1); 00017 double getPodoubleProduct(double* vect0,double* vect1); 00018 double* getNormal(double* vect); 00019 double getMagnitud(double* vect); 00020 double* makeVector(double podouble0[3], double podouble1[3]); 00021 00022 }; 00023 00024 #endif /*PlanesOperations_H_*/