123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace FWindSoft.Revit.Mep
- {
- /// <summary>
- /// 连接管线
- /// </summary>
- public interface IJoinCurve
- {
- /// <summary>
- /// 连接管线
- /// </summary>
- /// <param name="elements"></param>
- /// <param name="context"></param>
- bool Join(List<JoinElementWraper> elements, JoinContext context);
- }
- }
|