/***************************************************************************** * * 作 者 : 夏松 * 创建时间 : 2020/5/11 9:46:23 * * *****************************************************************************/ import {Point} from './point.domain'; /** * 点位列表 */ export class PointList { // tslint:disable-next-line:variable-name _Items: Array; constructor(options: { _Items?: Array } = {}) { if (options._Items) { for (const item of options._Items) { this._Items.push(new Point(item)); } } else { this._Items = []; } } }