Changeset 2840
- Timestamp:
- 01/14/10 15:13:12 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Bamgx/R2.h
r2740 r2840 1 // -*- Mode : c++ -*-2 //3 // SUMMARY :4 // USAGE :5 // ORG :6 // AUTHOR : Frederic Hecht7 // E-MAIL : hecht@ann.jussieu.fr8 //9 10 /*11 12 This file is part of Freefem++13 14 Freefem++ is free software; you can redistribute it and/or modify15 it under the terms of the GNU Lesser General Public License as published by16 the Free Software Foundation; either version 2.1 of the License, or17 (at your option) any later version.18 19 Freefem++ is distributed in the hope that it will be useful,20 but WITHOUT ANY WARRANTY; without even the implied warranty of21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the22 GNU Lesser General Public License for more details.23 24 You should have received a copy of the GNU Lesser General Public License25 along with Freefem++; if not, write to the Free Software26 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA27 */28 1 29 2 namespace bamg { … … 86 59 }; 87 60 88 89 90 //template <class R,class RR> // transposer91 //inline P2xP2<R,RR> t(P2xP2<R,RR> m)92 // {return P2xP2<R,RR>(m.x.x,m.y.x,m.x.y,m.y.y);}93 94 61 template <class R,class RR> 95 62 inline RR Det(const P2<R,RR> x,const P2<R,RR> y) { … … 123 90 inline std::ostream& operator <<(std::ostream& f, const P2<R,RR> & c) 124 91 { f << '[' << c.x << ',' << c.y <<']' <<std::flush ; return f; } 125 126 127 /*template <class R,class RR>128 inline P2<R,RR> Min2(P2<R,RR> x,P2<R,RR> y)129 {return P2<R,RR>(Min(x.x,y.x),Min(x.y,y.y) ;}130 131 template <class R,class RR>132 inline P2<R,RR> Max2(P2<R,RR> x,P2<R,RR> y)133 {return P2<R,RR>(Max(x.x,y.x),Max(x.y,y.y) ;}134 */135 92 } -
issm/trunk/src/c/Makefile.am
r2837 r2840 332 332 ./Bamgx/QuadTree.cpp \ 333 333 ./Bamgx/QuadTree.h \ 334 ./Bamgx/R2.cpp \335 334 ./Bamgx/R2.h \ 336 335 ./Bamgx/SetOfE4.cpp \ … … 673 672 ./Bamgx/QuadTree.cpp \ 674 673 ./Bamgx/QuadTree.h \ 675 ./Bamgx/R2.cpp \676 674 ./Bamgx/R2.h \ 677 675 ./Bamgx/SetOfE4.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.