Click or drag to resize
DigitalRuneClosedFormIKSolver Class
Modifies a skeleton using a non-iterative, closed-form IK solver.
Inheritance Hierarchy
SystemObject
  DigitalRune.Animation.CharacterIKSolver
    DigitalRune.Animation.CharacterClosedFormIKSolver

Namespace: DigitalRune.Animation.Character
Assembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
public class ClosedFormIKSolver : IKSolver

The ClosedFormIKSolver type exposes the following members.

Constructors
  NameDescription
Public methodClosedFormIKSolver
Initializes a new instance of the ClosedFormIKSolver class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnInvalidate
Called when the SkeletonPose was exchanged.
(Overrides IKSolverOnInvalidate.)
Protected methodOnSolve
Called when Solve(Single) is called.
(Overrides IKSolverOnSolve(Single).)
Public methodSolve
Modifies the SkeletonPose to reach the Target position.
(Inherited from IKSolver.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyMaxAngularVelocity
Gets or sets the maximal angular velocity per bone.
(Inherited from IKSolver.)
Public propertyRootBoneIndex
Gets or sets the index of the root bone.
Public propertySkeletonPose
Gets or sets the skeleton pose.
(Inherited from IKSolver.)
Public propertyTarget
Gets or sets the target position in model space.
(Inherited from IKSolver.)
Public propertyTipBoneIndex
Gets or sets the index of the tip bone.
Public propertyTipOffset
Gets or sets the tip offset in tip bone space.
Public propertyWeight
Gets or sets the weight.
(Inherited from IKSolver.)
Top
Explicit Interface Implementations
Remarks

This IKSolver uses non-iterative, closed-form IK solver algorithm to modify a bone chain to reach the Target position. RootBoneIndex determines the first bone in the chain. TipBoneIndex determines the last bone that is included in the chain. This IK solver rotates all bones in the chain, so that the tip of the bone chain reaches the Target position.

This IK solver does not support bone rotation limits.

See also IKSolver for more general information.

See Also