#include <j2k/Fred/3d/Sommet.hpp>
Go to the source code of this file.
Compounds | |
class | Face |
class | FaceC |
class | Maillage3DH |
Functions | |
DefType (ArcD) DefType(FaceC) DefType(Maillage3DH) class ArcD | |
istream & | operator>> (istream &in, const ArcD &a) |
ostream & | operator<< (ostream &out, const ArcD &a) |
istream & | operator>> (istream &in, const Face &f) |
ostream & | operator<< (ostream &out, const Face &f) |
istream & | operator>> (istream &in, const FaceC &f) |
ostream & | operator<< (ostream &out, const FaceC &f) |
istream & | operator>> (istream &in, const Maillage3DH &m) |
ostream & | operator<< (ostream &out, const Maillage3DH &m) |
|
Definition at line 10 of file Maille.hpp. 00015 : Arcs droits 00016 /////////////////////////////////////////////////////////////////////////////// 00017 class ArcD { 00018 00019 public: 00020 int sini, sfin; 00021 00022 ArcD(): sini(0), sfin(0) { } 00023 00024 ArcD( int ini, int fin ) : sini( ini ), sfin( fin ) { } 00025 00026 ArcD( const ArcD& a ) : sini(a.sini), sfin(a.sfin) { } 00027 00028 const RArcD& operator=( const ArcD& a ); 00029 00030 }; |
|
|
|
Definition at line 96 of file Maille.hpp. 00096 { 00097 return out << (Face&)f; 00098 } |
|
|
|
Definition at line 36 of file Maille.hpp. 00036 { 00037 return out <<a.sini<<' '<<a.sfin<<'\n'; 00038 } |
|
|
|
Definition at line 92 of file Maille.hpp. 00092 { 00093 return in >> (Face&)f; 00094 } |
|
|
|
Definition at line 32 of file Maille.hpp. 00032 { 00033 return in >>a.sini>>a.sfin; 00034 } |