Handles the TKE_Mesh opcode. More...
#include <BPolyhedron.h>
Public Member Functions | |
TK_Status | Read (BStreamFileToolkit &tk) alter |
TK_Status | ReadAscii (BStreamFileToolkit &tk) alter |
Deprecated. | |
void | Reset () alter |
void | SetColumns (const int columns) alter |
void | SetRows (const int rows) alter |
TK_Status | Write (BStreamFileToolkit &tk) alter |
TK_Status | WriteAscii (BStreamFileToolkit &tk) alter |
Deprecated. | |
Protected Member Functions | |
TK_Status | EnumerateEdges () |
Protected Attributes | |
int | m_columns |
int | m_rows |
Handles the TKE_Mesh opcode.
TK_Mesh provides support for writing/reading the TKE_Mesh opcode object to/from an HSF file.
The HOOPS/3dGS scene-graph supports 'mesh' primitives which consist of a number of rows, columns and a pionts array to define a 3d mesh with fixed topology. (Picture a distored checkerboard.)
TK_Status TK_Mesh::EnumerateEdges | ( | ) | [protected] |
overloads from TK_Polyhedron. Creates the mp_edge_enumeration array that lists all of the pairs of vertices that are connected as edges.
TK_Status TK_Mesh::Read | ( | BStreamFileToolkit & | tk | ) | [virtual] |
Reads data from the toolkit buffer, decodes/decompresses it, and maps it to the opcode handlers data members. User-defined classes which need to write out custom data should utilize one of the available GetData() methods.
tk | A reference to the BStreamFileToolkit object. |
Implements BBaseOpcodeHandler.
void TK_Mesh::Reset | ( | ) | [virtual] |
Resets the current opcode handler. This is called by the toolkit when it is done processing an opcode. This method reinitializes any opcode handler variables and frees up temporary data.
Reimplemented from BBaseOpcodeHandler.
void TK_Mesh::SetColumns | ( | const int | columns | ) | [inline] |
Sets number of columns for the mesh.
void TK_Mesh::SetRows | ( | const int | rows | ) | [inline] |
Sets number of rows for the mesh.
TK_Status TK_Mesh::Write | ( | BStreamFileToolkit & | tk | ) | [virtual] |
Encodes/compresses data and writes data to the toolkit buffer. User-defined classes which need to write out custom data should utilize one of the available PutData() methods, and first write out the opcode associated with the group of binary data followed by the data itself.
tk | A reference to the BStreamFileToolkit object. |
Implements BBaseOpcodeHandler.
int TK_Mesh::m_columns [protected] |
Number of columns in this Mesh object
int TK_Mesh::m_rows [protected] |
Number of rows in this Mesh object