LitDev.Vec3D.Length C# (CSharp) Method

Length() public method

public Length ( ) : double
return double
        public double Length()
        {
            return System.Math.Sqrt(X * X + Y * Y + Z * Z);
        }