ME3Explorer.SequenceObjects.SVar.Intersects C# (CSharp) Method

Intersects() public method

public Intersects ( RectangleF bounds ) : bool
bounds System.Drawing.RectangleF
return bool
        public override bool Intersects(RectangleF bounds)
        {
            Region ellipseRegion = new Region(shape.PathReference);
            return ellipseRegion.IsVisible(bounds);
        }