IPort.cs 283 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using System.Windows;
  3. namespace SHJX.Service.WorkFlowEdit
  4. {
  5. public interface IPort
  6. {
  7. ICollection<ILink> Links { get; }
  8. Point Center { get; }
  9. bool IsNear(Point point);
  10. Point GetEdgePoint(Point target);
  11. void UpdatePosition();
  12. }
  13. }