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