1234567891011121314151617181920212223242526272829 |
- /* ==============================================================================
- * 功能描述:Polygon
- * 创 建 者:Garrett
- * 创建日期:2019/12/17 17:18:57
- * ==============================================================================*/
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TestCad.Model
- {
- public class PolyLine : CADObject
- {
- private List<XYZ> m_Coordinates;
- public List<XYZ> Coordinates
- {
- get { return m_Coordinates; }
- set { m_Coordinates = value; }
- }
- public PolyLine(List<XYZ> collection)
- {
- m_Coordinates = collection;
- }
- }
- }
|