BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSymmetryUnitVector.h
Go to the documentation of this file.
00001 #ifndef BIOSYMMETRYUNITVECTOR_H
00002 #define BIOSYMMETRYUNITVECTOR_H
00003 
00004 using namespace std;
00005 
00006 class BioSymmetryUnitVector
00007 {
00008                 double co1;
00009                 double co2;
00010                 double co3;
00011                 double tra;
00012         public:
00013                 BioSymmetryUnitVector();
00014                 BioSymmetryUnitVector(double,double,double,double);
00015 
00016                 void setSymmetryUnitVector(double,double,double,double);
00017                 
00018                 double getUnitVectorCoordinate1();
00019                 double getUnitVectorCoordinate2();
00020                 double getUnitVectorCoordinate3();
00021                 double getUnitVectorTranslation();
00022 };
00023 
00024 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines