This reference page is linked to from the following overview
topics: Principal
Classes.
#include <patch.h>
Class Description
- See also:
- Class PatchMesh,
Working with
Patches.
- Description:
- This class describes a patch edge using the vertices at the
edge ends, and the indices of the patches sharing the edge. All
methods of this class are implemented by the system.
- Data Members:
- int v1;
Index of the first vertex.
int vec12;
Vector from v1 to v2.
int vec21;
Vector from v2 to v1.
int v2;
Index of second vertex.
IntTab patches;
Index of the patches using this edge. If the edge is only used by
one patch, patches[1] will be less than zero. Note: Previous to
R4.0 two separate integer variables (patch1 and
patch2) were used.
int aux1;
This is used to track topology changes during editing (Edit
Patch).
int aux2;
This is used to track topology changes during editing (PatchMesh).
Constructor & Destructor Documentation
CoreExport PatchEdge |
( |
int |
v1, |
|
|
int |
vec12, |
|
|
int |
vec21, |
|
|
int |
v2, |
|
|
int |
p1, |
|
|
int |
p2, |
|
|
int |
aux1 = -1 , |
|
|
int |
aux2 = -1 |
|
) |
|
|
Member Function Documentation
Member Data Documentation