L_LVKRN_API L_INT L_VecGetBindVerticesMode(pVector)
Gets current vertices bind mode for a vector handle.
Pointer to a vector handle.
An L_INT value that represents the Vertices-bind mode for the specified vector handle. Possible values are:
Value | Meaning |
---|---|
VECTOR_BIND_VERTICES | Vertices are bound. If changes occur to an object, all other objects sharing vertices with that object will be changed too. |
VECTOR_UNBIND_VERTICES | Vertices are not bound. If changes occur to an object, Other objects sharing vertices with that object will not be effected. |
Default mode is VECTOR_BIND_VERTICES.
Required DLLs and Libraries
This example will show the current bind vertices mode in a message box.
L_LTVKRNTEX_API L_INT VecGetBindVerticesModeExample(pVECTORHANDLE pVector)
{
L_INT nMode; /* Current bind vertices mode */
L_TCHAR szBuffer[ 80 ]; /* Buffer */
/* Get current bind vertices mode */
nMode = L_VecGetBindVerticesMode( pVector );
/* Show a message box */
if( nMode == VECTOR_BIND_VERTICES )
lstrcpy( szBuffer, TEXT("Vertices are bound"));
else
lstrcpy( szBuffer, TEXT("Vertices are not bound"));
MessageBox( NULL, szBuffer, TEXT("Bind Vertices Mode"), 0 );
return SUCCESS;
}