Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members Related Pages Search
cylindricalcoord.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef CYLINDRICALCOORD_H
00019 #define CYLINDRICALCOORD_H
00020
00021 #include "polarcoord.h"
00022
00027 class Cartesian3DCoord;
00028
00029 class CylindricalCoord : public PolarCoord
00030 {
00031 public:
00032 CylindricalCoord(double r, double theta, double z);
00033
00034 Cartesian3DCoord toCartesianCoord();
00035
00036 double z() const{return _z;}
00037
00038 private:
00039 double _z;
00040 };
00041
00042 #endif
|