OtherJoinObject.cs 941 B

12345678910111213141516171819202122232425262728293031323334
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:OtherJoinObject
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/24 9:25:47
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using JBIM.Common;
  13. using JBIM.Definition;
  14. namespace JBIM.Component
  15. {
  16. [TypeDefiniton(TypeDefinition.JoinObject)]
  17. public class OtherJoinObject : VisibleComponentObject
  18. {
  19. public OtherJoinObject()
  20. {
  21. ConnectedIds = new List<BimId>();
  22. }
  23. /// <summary>
  24. /// Connector连接的connectorIds
  25. /// </summary>
  26. public List<BimId> ConnectedIds { get; private set; }
  27. /// <summary>
  28. /// 旋转角度
  29. /// </summary>
  30. public double Rotation { get; set; }
  31. }
  32. }