Example #1
0
 public bool IsVisible(Rect viewPort)
 {
     IsActive = RectHelper.Intersect(viewPort, Bounds) != Rect.Empty;
     return(IsActive);
 }
Example #2
0
 public bool ContainsPosition(Point position)
 {
     return(!selectionStrokesRect.IsEmpty && RectHelper.Contains(selectionStrokesRect, position));
 }