Nexus.Normal3D.AbsDot C# (CSharp) Method

AbsDot() public static method

public static AbsDot ( Normal3D n1, Normal3D n2 ) : float
n1 Normal3D
n2 Normal3D
return float
        public static float AbsDot(Normal3D n1, Normal3D n2)
        {
            return System.Math.Abs(Dot(n1, n2));
        }