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.
kev/Drawer/UCDraw/PcgDrawR/RotationParameter.cs

29 lines
659 B
C#

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