AcTools.Render.Base.Cameras.BaseCamera.Visible C# (CSharp) Method

Visible() public method

public Visible ( BoundingBox box ) : bool
box BoundingBox
return bool
        public virtual bool Visible(BoundingBox box) {
            if (Frustum == null) throw new Exception("Call SetLens() first");
            return Frustum.Intersect(box) > 0;
        }