Strata - v1.4.10
    Preparing search index...

    Interface IKSolverResult

    Result of an IK solver execution.

    interface IKSolverResult {
        error: number;
        iterations: number;
        positions: Vector3[];
        reached: boolean;
        rotations: Quaternion[];
    }
    Index

    Properties

    error: number

    Final distance from end effector to target.

    iterations: number

    Total iterations performed by the solver.

    positions: Vector3[]

    Array of computed world positions for each bone.

    reached: boolean

    Whether the target was successfully reached within tolerance.

    rotations: Quaternion[]

    Array of computed local rotations for each bone.