SharpMath.Plane.Belongs C# (CSharp) Method

Belongs() public method

public Belongs ( float3 _p ) : bool
_p float3
return bool
        public bool Belongs( float3 _p )
        {
            return (float) System.Math.Abs( Distance( _p ) ) < float.Epsilon;
        }