BRDFSlices.Vector3.LengthSq C# (CSharp) Method

LengthSq() public method

public LengthSq ( ) : double
return double
        public double LengthSq()
        {
            return x*x + y*y + z*z;
        }