12345678910111213141516171819202122232425262728293031323334 |
- /*-------------------------------------------------------------------------
- * 功能描述:OtherJoinObject
- * 作者:xulisong
- * 创建时间: 2019/6/24 9:25:47
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using JBIM.Common;
- using JBIM.Definition;
- namespace JBIM.Component
- {
- [TypeDefiniton(TypeDefinition.JoinObject)]
- public class OtherJoinObject : VisibleComponentObject
- {
- public OtherJoinObject()
- {
- ConnectedIds = new List<BimId>();
- }
- /// <summary>
- /// Connector连接的connectorIds
- /// </summary>
- public List<BimId> ConnectedIds { get; private set; }
- /// <summary>
- /// 旋转角度
- /// </summary>
- public double Rotation { get; set; }
- }
- }
|