Hyperion.Core.Geometry.BoundingBox.IntersectP C# (CSharp) Method

IntersectP() public method

public IntersectP ( Ray ray, double &hit0 ) : bool
ray Ray
hit0 double
return bool
        public bool IntersectP(Ray ray, out double hit0)
        {
            double temp = 0.0;
            return IntersectP (ray, out hit0, out temp);
        }

Same methods

BoundingBox::IntersectP ( Ray ray, double &hit0, double &hit1 ) : bool