Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Private Attributes | Friends | List of all members
Nektar::Utilities::IsoVertex Class Reference

#include <ProcessIsoContour.h>

Collaboration diagram for Nektar::Utilities::IsoVertex:
Collaboration graph
[legend]

Public Member Functions

 IsoVertex (void)
 
 ~IsoVertex ()
 
int get_iso_id ()
 
int get_iso_vert_id ()
 

Private Attributes

int m_id
 
int m_iso_id
 
int m_iso_vert_id
 
NekDouble m_x
 
NekDouble m_y
 
NekDouble m_z
 
vector< NekDoublem_fields
 

Friends

class Iso
 
bool operator== (const IsoVertex &x, const IsoVertex &y)
 
bool operator!= (const IsoVertex &x, const IsoVertex &y)
 

Detailed Description

Definition at line 189 of file ProcessIsoContour.h.

Constructor & Destructor Documentation

Nektar::Utilities::IsoVertex::IsoVertex ( void  )
inline

Definition at line 194 of file ProcessIsoContour.h.

References m_id, m_x, m_y, and m_z.

Nektar::Utilities::IsoVertex::~IsoVertex ( )
inline

Definition at line 200 of file ProcessIsoContour.h.

200 {};

Member Function Documentation

int Nektar::Utilities::IsoVertex::get_iso_id ( )
inline

Definition at line 202 of file ProcessIsoContour.h.

References m_iso_id.

203  {
204  return m_iso_id;
205  }
int Nektar::Utilities::IsoVertex::get_iso_vert_id ( )
inline

Definition at line 207 of file ProcessIsoContour.h.

References m_iso_vert_id.

208  {
209  return m_iso_vert_id;
210  }

Friends And Related Function Documentation

friend class Iso
friend

Definition at line 192 of file ProcessIsoContour.h.

bool operator!= ( const IsoVertex x,
const IsoVertex y 
)
friend

Definition at line 759 of file ProcessIsoContour.cpp.

760 {
761  return ((x.m_x-y.m_x)*(x.m_x-y.m_x) + (x.m_y-y.m_y)*(x.m_y-y.m_y) +
762  (x.m_z-y.m_z)*(x.m_z-y.m_z) < SQ_PNT_TOL)? 0:1;
763 }
bool operator== ( const IsoVertex x,
const IsoVertex y 
)
friend

Definition at line 752 of file ProcessIsoContour.cpp.

753 {
754  return ((x.m_x-y.m_x)*(x.m_x-y.m_x) + (x.m_y-y.m_y)*(x.m_y-y.m_y) +
755  (x.m_z-y.m_z)*(x.m_z-y.m_z) < SQ_PNT_TOL)? true:false;
756 }

Member Data Documentation

vector<NekDouble > Nektar::Utilities::IsoVertex::m_fields
private

Definition at line 220 of file ProcessIsoContour.h.

Referenced by Nektar::Utilities::Iso::condense().

int Nektar::Utilities::IsoVertex::m_id
private

Definition at line 216 of file ProcessIsoContour.h.

Referenced by Nektar::Utilities::Iso::condense(), and IsoVertex().

int Nektar::Utilities::IsoVertex::m_iso_id
private

Definition at line 217 of file ProcessIsoContour.h.

Referenced by get_iso_id().

int Nektar::Utilities::IsoVertex::m_iso_vert_id
private

Definition at line 218 of file ProcessIsoContour.h.

Referenced by get_iso_vert_id().

NekDouble Nektar::Utilities::IsoVertex::m_x
private
NekDouble Nektar::Utilities::IsoVertex::m_y
private
NekDouble Nektar::Utilities::IsoVertex::m_z
private