PolyLine.cs 771 B

1234567891011121314151617181920212223242526272829
  1. /* ==============================================================================
  2. * 功能描述:Polygon
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/12/17 17:18:57
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace TestCad.Model
  13. {
  14. public class PolyLine : CADObject
  15. {
  16. private List<XYZ> m_Coordinates;
  17. public List<XYZ> Coordinates
  18. {
  19. get { return m_Coordinates; }
  20. set { m_Coordinates = value; }
  21. }
  22. public PolyLine(List<XYZ> collection)
  23. {
  24. m_Coordinates = collection;
  25. }
  26. }
  27. }