Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ihalfedge.h
1 #pragma once
2 
8 namespace itasca {
9  class IThing;
10 }
11 
12 namespace itascaxd {
13  using namespace itasca;
14 
15  class IHalfVertex;
16  class IHalfFacet;
17 
23  class IHalfEdge {
24  public:
26  inline static const TType type_ = 0x4c906744;
27 
29  virtual IThing * getIThing()=0;
31  virtual const IThing * getIThing() const=0;
32 
34  virtual IHalfVertex * getOrigin()=0;
36  virtual const IHalfVertex * getOrigin() const=0;
38  virtual IHalfVertex * getEnd()=0;
40  virtual const IHalfVertex * getEnd() const=0;
41 
43  virtual IHalfFacet * getPair()=0;
45  virtual const IHalfFacet * getPair() const=0;
46 
47  };
48 }// namespace pfc
49 // EoF
50 
Interface for an edge used in the faceted wall logic. This is the interface for an edge used in the f...
Definition: ihalfedge.h:23
namespace Itasca
Definition: basememory.cpp:9
Base class for items that will be stored in containers.
Definition: ithing.h:31
Interface for a vertex used in the faceted wall logic. This is the interface for a vertex used in the...
Definition: ihalfvertex.h:27
unsigned int TType
class type indicator
Definition: basedef.h:41
Interface for a facet used in the faceted wall logic. This is the interface for a triangular facet as...
Definition: ihalffacet.h:37
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4