// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Animation.IK { public partial class UxrCcdIKSolver { #region Private Types & Data /// /// Result of the CCD algorithm iteration /// private enum IterationResult { /// /// The effector has reached the goal. /// GoalReached, /// /// The effector is still trying to reach the goal. /// ReachingGoal, /// /// There was an error and no links were rotated in order to reach the goal. /// Error, } #endregion } }