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: BoundaryPOVRay.hpp,v 1.4 2007/05/20 23:02:47 delpinux Exp $ 00019 00020 #ifndef BOUNDARY_POVRAY_HPP 00021 #define BOUNDARY_POVRAY_HPP 00022 00023 #include <Boundary.hpp> 00024 #include <TinyVector.hpp> 00025 #include <vector> 00026 00034 class BoundaryPOVRay 00035 : public Boundary 00036 { 00037 private: 00038 std::vector<TinyVector<3,real_t> > 00039 __povReferences; 00047 void put(std::ostream& os) const { 00048 if (__povReferences.size() > 0) { 00049 os << " POVref:"; 00050 for (size_t i=0; i<__povReferences.size(); ++i) { 00051 os << " <" << __povReferences[i][0] 00052 << ',' << __povReferences[i][1] 00053 << ',' << __povReferences[i][2] << '>'; 00054 } 00055 } 00056 } 00057 00058 public: 00064 size_t numberOfPOVReferences() const 00065 { 00066 return __povReferences.size(); 00067 } 00068 00074 void addPOVReference(const TinyVector<3,real_t>& povReference) 00075 { 00076 for(size_t i=0; i<__povReferences.size(); ++i) { 00077 if (__povReferences[i] == povReference) 00078 return; 00079 } 00080 __povReferences.push_back(povReference); 00081 } 00082 00090 const TinyVector<3,real_t>& 00091 povReference(const size_t& i) const 00092 { 00093 ASSERT(i<__povReferences.size()); 00094 return __povReferences[i]; 00095 } 00096 00102 BoundaryPOVRay(const BoundaryPOVRay& B) 00103 : Boundary(B), 00104 __povReferences(B.__povReferences) 00105 { 00106 ; 00107 } 00108 00113 BoundaryPOVRay() 00114 : Boundary(Boundary::povRay) 00115 { 00116 ; 00117 } 00118 00123 ~BoundaryPOVRay() 00124 { 00125 ; 00126 } 00127 }; 00128 00129 #endif // BOUNDARY_POVRAY_HPP
1.5.6