IMepCurveJoin.cs 588 B

12345678910111213141516171819
  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 IMepCurveJoin
  12. {
  13. bool Join2Curve(List<JoinElementWraper> elements,JoinContext context);
  14. bool Join3Curve(List<JoinElementWraper> elements, JoinContext context);
  15. bool Join4Curve(List<JoinElementWraper> elements, JoinContext context);
  16. bool JoinOtherCurve(List<JoinElementWraper> elements, JoinContext context);
  17. }
  18. }