|
|
|
sphericalcoord.h00001 /*************************************************************************** 00002 sphericalcoord.h - description 00003 ------------------- 00004 begin : Sat Nov 30 2002 00005 copyright : (C) 2002 by Fungmeista 00006 email : mizunoami44@users.sourceforge.net 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef SPHERICALCOORD_H 00019 #define SPHERICALCOORD_H 00020 00025 class Cartesian3DCoord; 00026 00030 class SphericalCoord 00031 { 00032 public: 00033 SphericalCoord(double azimuthal, double polar, double radial); 00034 00040 Cartesian3DCoord toCartesianCoord(); 00041 00042 private: 00043 double azimuthal, polar, radial; 00044 }; 00045 00046 #endif |