addData1f void GeomVertexWriter::add_data1f(float data); Description: Sets the write row to a particular 1-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData1i void GeomVertexWriter::add_data1i(int data); Description: Sets the write row to a particular 1-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData2f void GeomVertexWriter::add_data2f(float x, float y); Description: Sets the write row to a particular 2-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData2i void GeomVertexWriter::add_data2i(int a, int b); Description: Sets the write row to a particular 2-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData3f void GeomVertexWriter::add_data3f(float x, float y, float z); Description: Sets the write row to a particular 3-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData3i void GeomVertexWriter::add_data3i(int a, int b, int c); Description: Sets the write row to a particular 3-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData4f void GeomVertexWriter::add_data4f(float x, float y, float z, float w); Description: Sets the write row to a particular 4-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
addData4i void GeomVertexWriter::add_data4i(int a, int b, int c, int d); Description: Sets the write row to a particular 4-component value, and advances the write row. If the write row advances past the end of data, implicitly adds a new row to the data. |
getArray int GeomVertexWriter::get_array(void) const; Description: Returns the array index containing the data type that the writer is working on. |
getArrayData GeomVertexArrayData *GeomVertexWriter::get_array_data(void) const; Description: Returns the particular array object that the writer is currently processing. |
getColumn GeomVertexColumn const *GeomVertexWriter::get_column(void) const; Description: Returns the description of the data type that the writer is working on. |
getStartRow int GeomVertexWriter::get_start_row(void) const; Description: Returns the row index at which the writer started. It will return to this row if you reset the current column. |
getVertexData GeomVertexData *GeomVertexWriter::get_vertex_data(void) const; Description: Returns the vertex data object that the writer is processing. This may return NULL if the writer was constructed with just an array pointer. |
getWriteRow int GeomVertexWriter::get_write_row(void) const; Description: Returns the row index to which the data will be written at the next call to set_data*() or add_data*(). |
hasColumn bool GeomVertexWriter::has_column(void) const; Description: Returns true if a valid data type has been successfully set, or false if the data type does not exist. |
isAtEnd bool GeomVertexWriter::is_at_end(void) const; Description: Returns true if the writer is currently at the end of the list of vertices, false otherwise. If this is true, another call to set_data*() will result in a crash, but another call to add_data*() will add a new row. |
operator = void GeomVertexWriter::operator =(GeomVertexWriter const ©); Description: |
setColumn bool GeomVertexWriter::set_column(int column); Description: Sets up the writer to use the nth data type of the GeomVertexFormat, numbering from 0. This also resets the write row number to the start row (the same value passed to a previous call to set_row(), or 0 if set_row() was never called.) The return value is true if the data type is valid, false otherwise. Description: Sets up the writer to use the data type with the indicated name. This also resets the write number to the start row (the same value passed to a previous call to set_row(), or 0 if set_row() was never called.) Description: Sets up the writer to use the indicated column description on the given array. This also resets the current write row number to the start row (the same value passed to a previous call to set_row(), or 0 if set_row() was never called.) |
setData1f void GeomVertexWriter::set_data1f(float data); Description: Sets the write row to a particular 1-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData1i void GeomVertexWriter::set_data1i(int data); Description: Sets the write row to a particular 1-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData2f void GeomVertexWriter::set_data2f(float x, float y); Description: Sets the write row to a particular 2-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData2i void GeomVertexWriter::set_data2i(int a, int b); Description: Sets the write row to a particular 2-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData3f void GeomVertexWriter::set_data3f(float x, float y, float z); Description: Sets the write row to a particular 3-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData3i void GeomVertexWriter::set_data3i(int a, int b, int c); Description: Sets the write row to a particular 3-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData4f void GeomVertexWriter::set_data4f(float x, float y, float z, float w); Description: Sets the write row to a particular 4-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setData4i void GeomVertexWriter::set_data4i(int a, int b, int c, int d); Description: Sets the write row to a particular 4-component value, and advances the write row. It is an error for the write row to advance past the end of data. |
setRow void GeomVertexWriter::set_row(int row); Description: Sets the start row to the indicated value. The writer will begin writing to the indicated row; each subsequent set_data*() call will store the data into the subsequent row. If set_column() is called, the writer will return to this row. |