Functions | |
void | MShow_Face_Visibilities (HC_KEY key, int offset, int count, char *settings) |
int | MShow_Face_Visibilities_With_Existence (HC_KEY key, int offset, int count, char *existence, char *visibilities) |
void | MShow_Face_Visibilities_By_Index (HC_KEY key, int count, int *indices, char *settings) |
void | MShow_Specific_Face_Visibilities (HC_KEY key, int count, const int *indices, char *settings) |
int | MShow_Specific_Face_Visibilities_With_Existence (HC_KEY key, int count, const int *indices, char *existence, char *visibilities) |
void MShow_Face_Visibilities | ( | HC_KEY | key, | |
int | offset, | |||
int | count, | |||
char * | settings | |||
) |
Shows the visibility settings for a range of faces.
key | - Key of a shell or mesh. | |
offset | - First face number. | |
count | - Number of faces. | |
settings | - Visibility setting per face, zero (0) for off, one (1) for on. Passed by reference. Returned to user. |
int MShow_Face_Visibilities_With_Existence | ( | HC_KEY | key, | |
int | offset, | |||
int | count, | |||
char * | existence, | |||
char * | visibilities | |||
) |
Shows the visibility settings for a range of faces.
key | - Key of a shell or mesh. | |
offset | - First face number. | |
count | - Number of faces. | |
existence | - An array of size count whose values would be populated with either 0 (does not exist) or 1 (exists). Passed by reference. Returned to user. | |
visibilities | - Visibility setting per face, zero (0) for off, one (1) for on. Passed by reference. Returned to user. |
void MShow_Face_Visibilities_By_Index | ( | HC_KEY | key, | |
int | count, | |||
int * | indices, | |||
char * | settings | |||
) |
Similar to MShow_Specific_Face_Visibilities() which shows the visibility settings for a precise list of faces.
key | - Key of a shell or mesh. | |
count | - Number of faces. | |
indices | - The list of faces to show the visibility setting. | |
settings | - Visibility setting per face, zero (0) for off, one (1) for on. Passed by reference. Returned to user. |
void MShow_Specific_Face_Visibilities | ( | HC_KEY | key, | |
int | count, | |||
const int * | indices, | |||
char * | settings | |||
) |
Shows the visibility settings for a list of faces.
key | - Key of a shell or mesh. | |
count | - Number of faces. | |
indices | - The list of faces to show the visibility setting. | |
settings | - Visibility setting per face, zero (0) for off, one (1) for on. Passed by reference. Returned to user. |
int MShow_Specific_Face_Visibilities_With_Existence | ( | HC_KEY | key, | |
int | count, | |||
const int * | indices, | |||
char * | existence, | |||
char * | visibilities | |||
) |
Returns the visibility settings from an arbitrary set of faces without having to open each face.
key | - Key of a shell or mesh. | |
count | - Number of faces. | |
indices | - The list of faces. | |
existence | - An array of size count whose values would be populated with either 0 (does not exist) or 1 (exists). Passed by reference. Returned to user. | |
visibilities | - Visibility setting per face, zero (0) for off, one (1) for on. Passed by reference. Returned to user. |