
Functions | |
| void | MShow_Specific_Vertex_Colors_By_FIndex (HC_KEY key, const char *type, int pcount, const int *offsets, float *indices) |
| Returns vertex color settings from an arbitrary set of vertices without having to open each vertex. More... | |
| void | MShow_Vertex_Colors_By_FIndex (HC_KEY key, const char *type, int offset, int pcount, float *indices) |
| Returns vertex color settings from a range of vertices without having to open each vertex. More... | |
| void MShow_Specific_Vertex_Colors_By_FIndex | ( | HC_KEY | key, |
| const char * | type, | ||
| int | pcount, | ||
| const int * | offsets, | ||
| float * | indices | ||
| ) |
Returns vertex color settings from an arbitrary set of vertices without having to open each vertex.
| key | - Key to the piece of geometry to query. |
| type | - Type of geometry referred to by key. This can be either "vertex", "edge", or "face" |
| pcount | - Number of points in offsets to query. |
| offsets | - Indices of the key's point array on which to query values. |
| indices | - Array of floating point color index values. See Set_Color_By_FIndex(). Passed by reference. Returned to user. |
| void MShow_Vertex_Colors_By_FIndex | ( | HC_KEY | key, |
| const char * | type, | ||
| int | offset, | ||
| int | pcount, | ||
| float * | indices | ||
| ) |
Returns vertex color settings from a range of vertices without having to open each vertex.
| key | - Key to the piece of geometry to query. |
| type | - Type of geometry referred to by key. This can be either "vertex", "edge", or "face" |
| offset | - Index of the key's point array on which to start querying values. |
| pcount | - Number of points from offset to query. |
| indices | - Array of floating point color index values. See Set_Color_By_FIndex(). Passed by reference. Returned to user. |