SA.FullBodyIK._IsNear C# (CSharp) Method

_IsNear() public static method

public static _IsNear ( Vector3 &lhs, Vector3 &rhs ) : bool
lhs Vector3
rhs Vector3
return bool
		public static bool _IsNear( ref Vector3 lhs, ref Vector3 rhs )
		{
			return IsFuzzy( ref lhs, ref rhs, IKMoveEpsilon );
		}
FullBodyIK