MeshCapVert Class Reference
 
 
 
MeshCapVert Class Reference

#include <captypes.h>

Inheritance diagram for MeshCapVert:
MaxHeapOperators

Public Member Functions

  MeshCapVert ()
  MeshCapVert (int t, int p, int i, int nv=0)
bool  operator== (const MeshCapVert &b) const

Public Attributes

int  type
int  poly
int  index
int  newVert

Constructor & Destructor Documentation

MeshCapVert ( ) [inline]
{}
MeshCapVert ( int  t,
int  p,
int  i,
int  nv = 0 
) [inline]
{ type=t; poly=p; index=i; newVert=nv; }

Member Function Documentation

bool operator== ( const MeshCapVert b ) const [inline]
Remarks:
Compares this class instance to another one
                {
                        return type == b.type && poly == b.poly && index == b.index && newVert == b.newVert;
                }

Member Data Documentation