12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace FWindSoft.Revit.Mep
- {
- /// <summary>
- /// 管线连接接口
- /// </summary>
- public interface IMepCurveJoin
- {
- bool Join2Curve(List<JoinElementWraper> elements,JoinContext context);
- bool Join3Curve(List<JoinElementWraper> elements, JoinContext context);
- bool Join4Curve(List<JoinElementWraper> elements, JoinContext context);
- bool JoinOtherCurve(List<JoinElementWraper> elements, JoinContext context);
- }
- }
|