Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
facet Class Reference
Collaboration diagram for facet:

Public Member Functions

 facet ()
 
 facet (const node **nbor, const face *source)
 
facegetFace (void) const
 
bool isPatched (void) const
 
void markPatched (void)
 
bool matches (const facet &o) const
 

Private Attributes

facedest
 
bool patched
 

Detailed Description

Definition at line 178 of file face.cpp.

Constructor & Destructor Documentation

facet ( )
inline

Definition at line 183 of file face.cpp.

183 { }
facet ( const node **  nbor,
const face source 
)
inline

Definition at line 184 of file face.cpp.

References dest, node::intersect(), and patched.

184  {
185  dest=node::intersect(nbor,source);
186  patched=false;
187  }
face * dest
Definition: face.cpp:179
bool patched
Definition: face.cpp:180
static face * intersect(const node **nodes, const face *notHim=NULL, blockLoc *loc=NULL, blockLoc *oX=NULL, blockLoc *oY=NULL)
Definition: adj.cpp:136

Here is the call graph for this function:

Member Function Documentation

face* getFace ( void  ) const
inline

Definition at line 188 of file face.cpp.

References dest.

Referenced by face::buildPatches().

188 {return dest;}
face * dest
Definition: face.cpp:179

Here is the caller graph for this function:

bool isPatched ( void  ) const
inline

Definition at line 189 of file face.cpp.

References patched.

189 {return patched;}
bool patched
Definition: face.cpp:180
void markPatched ( void  )
inline

Definition at line 190 of file face.cpp.

References patched.

Referenced by face::markPatched().

190 {patched=true;}
bool patched
Definition: face.cpp:180

Here is the caller graph for this function:

bool matches ( const facet o) const
inline

Definition at line 191 of file face.cpp.

References dest, and patched.

191  {
192  if (patched) return false;
193  return dest==o.dest;
194  }
face * dest
Definition: face.cpp:179
bool patched
Definition: face.cpp:180

Member Data Documentation

face* dest
private

Definition at line 179 of file face.cpp.

Referenced by facet(), getFace(), and matches().

bool patched
private

Definition at line 180 of file face.cpp.

Referenced by facet(), isPatched(), markPatched(), and matches().


The documentation for this class was generated from the following file: