IJoinCurve.cs 487 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace FWindSoft.Revit.Mep
  7. {
  8. /// <summary>
  9. /// 连接管线
  10. /// </summary>
  11. public interface IJoinCurve
  12. {
  13. /// <summary>
  14. /// 连接管线
  15. /// </summary>
  16. /// <param name="elements"></param>
  17. /// <param name="context"></param>
  18. bool Join(List<JoinElementWraper> elements, JoinContext context);
  19. }
  20. }