12345678910111213141516171819202122232425 |
- /* ==============================================================================
- * 功能描述:BlockReference
- * 创 建 者:Garrett
- * 创建日期:2019/12/17 15:52:19
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TestCad.Model
- {
- /// <summary>
- /// BlockReference
- /// </summary>
- class BlockReference: CADObject
- {
- public XYZ Position { get; set; }
- public double Rotation { get; set; }
- }
- }
|