IKEnumCallback Class Reference
 
 
 
IKEnumCallback Class Reference

#include <control.h>

Inheritance diagram for IKEnumCallback:
MaxHeapOperators

Class Description

See also:
Class Control.

Description:
This class is for enumerating IK parameters. This callback is called once for each parameter a controller has. This callback is implemented by the system and passed into the method EnumIKParams() of the controller.

Public Member Functions

virtual void  proc (Control *c, int index)=0

Member Function Documentation

virtual void proc ( Control c,
int  index 
) [pure virtual]
Remarks:
Implemented by the System.

The plug-in calls this method once for each parameter (degree of freedom it has). It passes a pointer to itself and the index of the parameter.
Parameters:
Control *c

The controller itself is passed here.

int index

The index of the parameter. For example a position controller with three degrees of freedom (X, Y, Z) would call this method three times passing it and index of 0, then 1, then 2.