예제 #1
0
        public float AngleToDot(float maxAngle, float minDot)
        {
            if (priorMaxAngle != maxAngle)
            {
                minDot = VectorMath.AngleToDot(maxAngle);
            }

            priorMaxAngle = maxAngle;
            return(minDot);
        }