Beispiel #1
0
        public float DotToAngle(float maxAngle, float minDot)
        {
            if (priorMinDot != minDot)
            {
                maxAngle = VectorMath.DotToAngle(minDot);
            }

            priorMinDot = minDot;
            return(maxAngle);
        }