Files

30 lines
598 B
C#
Raw Permalink Normal View History

2026-02-23 17:02:55 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MetroGauges.Controls
{
/// <summary>
/// 块图形数据存储
/// </summary>
public class ShapDataContext
{
public object OringLocation { get; set; }
public netDxf.Entities.Arc Arc { get; set; }
public double ShapScaleRate { get; set; }
public bool IsClosed { get; set; }
public bool IsDirection { get; set; }
public ShapDataContext()
{
ShapScaleRate = 1;
}
}
}