Class IKEnumCallback

3DS Max Plug-In SDK

Class IKEnumCallback

See Also: Class Control.

class IKEnumCallback

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.

Methods:

Prototype:

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

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.