You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
542 B
C#

1 month ago
using System.ComponentModel;
1 month ago
using System.Drawing;
namespace PcgDrawR
{
/// <summary>
/// 旋转参数
/// </summary>
public class RotationParameter
{
/// <summary>
/// 原点坐标
/// </summary>
[Category("旋转"), DisplayName("原点坐标")]
1 month ago
public Point Origin { get; set; } = new Point(0, 0);
1 month ago
/// <summary>
/// 旋转度数
/// </summary>
[Category("旋转"), DisplayName("角度")]
public double Angle { get; set; } = 0;
}
}