moab
moab::SweptElementData::VertexDataRef Class Reference

structure to hold references to bounding vertex blocks More...

List of all members.

Public Member Functions

 VertexDataRef (const HomCoord &min, const HomCoord &max, const HomXform &tmp_xform, SweptVertexData *this_seq)
bool contains (const HomCoord &coords) const

Private Attributes

HomCoord minmax [2]
HomXform xform
HomXform invXform
SweptVertexDatasrcSeq

Friends

class SweptElementData

Detailed Description

structure to hold references to bounding vertex blocks

Definition at line 46 of file SweptElementData.hpp.


Constructor & Destructor Documentation

moab::SweptElementData::VertexDataRef::VertexDataRef ( const HomCoord min,
const HomCoord max,
const HomXform tmp_xform,
SweptVertexData this_seq 
) [inline]

Definition at line 216 of file SweptElementData.hpp.

    : xform(tmp_xform), invXform(tmp_xform.inverse()), srcSeq(this_seq)
{
  minmax[0] = HomCoord(this_min);
  minmax[1] = HomCoord(this_max); 
}

Member Function Documentation

bool moab::SweptElementData::VertexDataRef::contains ( const HomCoord coords) const [inline]

Definition at line 211 of file SweptElementData.hpp.

{
  return (minmax[0] <= coords && minmax[1] >= coords);
}

Friends And Related Function Documentation

friend class SweptElementData [friend]

Definition at line 53 of file SweptElementData.hpp.


Member Data Documentation


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines