Public Member Functions |
| NDiscSetTetData (const NNormalSurface &surface, unsigned long tetIndex) |
| Creates a new disc set corresponding to the discs of the given normal surface that lie within the given tetrahedron.
|
| NDiscSetTetData (const NNormalSurface &surface, unsigned long tetIndex, const T &initValue) |
| Creates a new disc set corresponding to the discs of the given normal surface that lie within the given tetrahedron.
|
| NDiscSetTetData (unsigned long tri0, unsigned long tri1, unsigned long tri2, unsigned long tri3, unsigned long quad0, unsigned long quad1, unsigned long quad2, unsigned long oct0=0, unsigned long oct1=0, unsigned long oct2=0) |
| Creates a new disc set where the number of discs of each type is explicitly given.
|
virtual | ~NDiscSetTetData () |
| Destroys this disc set and deallocates all data arrays.
|
T & | data (int discType, unsigned long discNumber) |
| Retrieves a reference to the data corresponding to the given normal disc.
|
| NDiscSetTet (const NNormalSurface &surface, unsigned long tetIndex) |
| Creates a new set of normal discs corresponding to the discs of the given normal surface that lie within the given tetrahedron.
|
| NDiscSetTet (unsigned long tri0, unsigned long tri1, unsigned long tri2, unsigned long tri3, unsigned long quad0, unsigned long quad1, unsigned long quad2, unsigned long oct0=0, unsigned long oct1=0, unsigned long oct2=0) |
| Creates a new set of normal discs where the number of discs of each type is explicitly given.
|
virtual | ~NDiscSetTet () |
| Destroys this disc set.
|
unsigned long | nDiscs (int type) const |
| Determines the number of discs of the given type inside this tetrahedron.
|
unsigned long | arcFromDisc (int arcFace, int arcVertex, int discType, unsigned long discNumber) const |
| Determines which normal arc of a given type on a given face of this tetrahedron corresponds to the given normal disc.
|
void | discFromArc (int arcFace, int arcVertex, unsigned long arcNumber, int &discType, unsigned long &discNumber) const |
| Determines which normal disc in this tetrahedron meets the given normal arc on the given face.
|
template<class T>
class regina::NDiscSetTetData< T >
Stores data of type T
for every normal disc inside a single tetrahedron.
- Warning:
- This class converts the number of normal discs of a given type from NLargeInteger to
unsigned long
. See the precondition below.
- Precondition:
- The number of normal discs of a particular type in a particular tetrahedron can be represented by a long integer.
-
This class should only be used with embedded normal surfaces.
-
Type T has a default constructor and an assignment operator. That is, if
a
and b
are of type T, then a
can be declared with no parameters and can then receive the value of b
using a=b
.
- Python:
- Not present.