#include <vertexfacesandedges.h>
Public Member Functions | |
| VertexFacesAndEdges () | |
| Default constructor. | |
| VertexFacesAndEdges (int num_edges, int num_faces) | |
| Constructor. Sets the number of edges and faces. | |
| void | SetNumEdges (int num_edges) |
| Sets the number of edges. | |
| void | SetNumFaces (int num_faces) |
| Sets the number of faces. | |
| void | SetEdge (int id, int edge) |
| Sets a specified edge. | |
| void | SetFace (int id, int face) |
| Sets a specified face. | |
| int | GetNumEdges () |
| Returns the number of edges. | |
| int | GetNumFaces () |
| Returns the number of faces. | |
| int | GetEdge (int id) |
| Returns the specified edge. | |
| int | GetFace (int id) |
| Returns the specified face. | |
| VertexFacesAndEdges & | operator= (const VertexFacesAndEdges &vfe) |
| Assignment operator. | |
Public Attributes | |
| int | ne |
| The number of edges. | |
| int | nf |
| The number of faces. | |
| int * | f |
| The array of faces. | |
| int * | e |
| The array of edges. | |
1.5.1-p1