/// <summary> /// Checks if a viewing frustum lies within or intersects this AABB. /// </summary> /// <param name="plane">The plane to test against.</param> /// <returns>false if fully outside, true if inside or intersecting.</returns> public bool InsideOrIntersectingPlane(PlaneD plane) { return(plane.InsideOrIntersecting(this)); }