ME3Explorer.SequenceObjects.SVar.Intersects C# (CSharp) 메소드

Intersects() 공개 메소드

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