00001 // This file is part of ff3d - http://www.freefem.org/ff3d 00002 // Copyright (C) 2001, 2002, 2003 Stéphane Del Pino 00003 00004 // This program is free software; you can redistribute it and/or modify 00005 // it under the terms of the GNU General Public License as published by 00006 // the Free Software Foundation; either version 2, or (at your option) 00007 // any later version. 00008 00009 // This program is distributed in the hope that it will be useful, 00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 // GNU General Public License for more details. 00013 00014 // You should have received a copy of the GNU General Public License 00015 // along with this program; if not, write to the Free Software Foundation, 00016 // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 00018 // $Id: Torus.hpp,v 1.4 2006/10/01 23:25:58 delpinux Exp $ 00019 00020 #ifndef TORUS_HPP 00021 #define TORUS_HPP 00022 00030 class Torus 00031 : public Shape 00032 { 00033 private: 00034 const real_t __radius1; 00035 const real_t __radius2; 00037 protected: 00045 inline bool __inShape(const TinyVector<3, real_t>& p) const 00046 { 00047 const real_t d2 = p[0]*p[0]+p[2]*p[2]; 00048 if (d2 != 0) { 00049 const real_t d = std::sqrt(d2); 00050 const real_t r=(1.-__radius1/d); 00051 TinyVector<3> x (r*p[0], 00052 p[1], 00053 r*p[2]); 00054 return (Norm(x) < __radius2); 00055 } else { 00056 return (Norm(p) < __radius2); 00057 } 00058 } 00059 00067 std::ostream& __put(std::ostream& os) const 00068 { 00069 os << "torus (" << __radius1 << ',' << __radius2 << ')'; 00070 return os; 00071 } 00072 00078 ReferenceCounting<Shape> __getCopy() const 00079 { 00080 return new Torus(*this); 00081 } 00082 00083 public: 00090 Torus(const real_t& r1, 00091 const real_t& r2) 00092 : Shape(Shape::torus), 00093 __radius1(r1), 00094 __radius2(r2) 00095 { 00096 ; 00097 } 00098 00104 Torus(const Torus& T) 00105 : Shape(T), 00106 __radius1(T.__radius1), 00107 __radius2(T.__radius2) 00108 { 00109 ; 00110 } 00111 00116 ~Torus() 00117 { 00118 ; 00119 } 00120 }; 00121 00122 #endif // TORUS_HPP
1.5.6