Category Animation, Object ProAnimFrame

Function ProAnimframeObjVisit


Description
Visits the animation objects in an animation frame.
Synopsis
#include <ProAnimate.h>
ProErrorProAnimframeObjVisit(
ProAnimFrame anim_frame
/* (In)
The handle to the animation frame
*/
ProAnimObjAct visit_action
/* (In)
The application-supplied function to be invoked for each animation object
*/
ProAnimObjAct filter_action
/* (In)
The application-supplied function to be invoked for each animation object that decides whether the animation object should be visited. If NULL, all animation objects are visited using the action function.
*/
ProAppData app_data
/* (In)
The application-supplied data to be passed to the visit and filter functions
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully visited all the objects.

Manual References:

  1. User Interface: Animation: Animation Frames

Sample Code References:

  1. pt_examples ( UtilCollect.c )