/* ============================================================================== * 功能描述: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 m_Coordinates; public List Coordinates { get { return m_Coordinates; } set { m_Coordinates = value; } } public PolyLine(List collection) { m_Coordinates = collection; } } }